mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-04-13 11:21:06 +00:00
[test-android] fix java package names.
This commit is contained in:
parent
ecdae699da
commit
c232274d6a
5 changed files with 6 additions and 6 deletions
|
@ -8,7 +8,7 @@ android {
|
|||
buildToolsVersion "30.0.3"
|
||||
|
||||
defaultConfig {
|
||||
applicationId "org.androidaudioplugin.fluidsynth_tests"
|
||||
applicationId "org.fluidsynth.fluidsynth_tests"
|
||||
minSdkVersion 24
|
||||
targetSdkVersion 30
|
||||
versionCode 1
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package org.androidaudioplugin.fluidsynth_tests
|
||||
package org.fluidsynth.fluidsynth_tests
|
||||
|
||||
import androidx.test.platform.app.InstrumentationRegistry
|
||||
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||
|
@ -19,6 +19,6 @@ class ExampleInstrumentedTest {
|
|||
fun useAppContext() {
|
||||
// Context of the app under test.
|
||||
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
|
||||
assertEquals("org.androidaudioplugin.fluidsynth_tests", appContext.packageName)
|
||||
assertEquals("org.fluidsynth.fluidsynth_tests", appContext.packageName)
|
||||
}
|
||||
}
|
|
@ -33,7 +33,7 @@ add_library( # Sets the name of the library.
|
|||
# Provides a relative path to your source file(s).
|
||||
${LINKED_OBJ_FILES}
|
||||
|
||||
tests/test_preset_pinning.c
|
||||
#tests/test_preset_pinning.c
|
||||
tests/test_seq_event_queue_remove.c
|
||||
tests/test_seq_scale.c
|
||||
tests/test_jack_obtaining_synth.c
|
||||
|
|
|
@ -24,7 +24,7 @@ int bug_635_main();
|
|||
|
||||
int run_all_fluidsynth_tests() {
|
||||
int ret = 0;
|
||||
ret += preset_pinning_main();
|
||||
//ret += preset_pinning_main();
|
||||
ret += seq_event_queue_remove_main();
|
||||
ret += seq_scale_main();
|
||||
ret += jack_obtaining_synth_main();
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package org.androidaudioplugin.fluidsynth_tests
|
||||
package org.fluidsynth.fluidsynth_tests
|
||||
|
||||
import org.junit.Test
|
||||
|
Loading…
Reference in a new issue