summaryrefslogtreecommitdiffstats
path: root/tests/src/com/cyngn
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/com/cyngn')
-rw-r--r--tests/src/com/cyngn/audiofx/PresetParcelTests.java7
-rw-r--r--tests/src/com/cyngn/audiofx/eq/EqUtilTests.java6
-rw-r--r--tests/src/com/cyngn/audiofx/service/AudioFxServiceTests.java8
-rw-r--r--tests/src/com/cyngn/audiofx/tests/DebugActivity.java4
-rw-r--r--tests/src/com/cyngn/audiofx/tests/TestActivity.java2
-rw-r--r--tests/src/com/cyngn/audiofx/util/BaseAudioFxServiceInstrumentationTest.java4
-rw-r--r--tests/src/com/cyngn/audiofx/util/TestDuckingMediaPlayer.java4
-rw-r--r--tests/src/com/cyngn/audiofx/util/TestMediaPlayer.java4
8 files changed, 17 insertions, 22 deletions
diff --git a/tests/src/com/cyngn/audiofx/PresetParcelTests.java b/tests/src/com/cyngn/audiofx/PresetParcelTests.java
index 8ea0c68..86aee91 100644
--- a/tests/src/com/cyngn/audiofx/PresetParcelTests.java
+++ b/tests/src/com/cyngn/audiofx/PresetParcelTests.java
@@ -1,11 +1,8 @@
-package com.cyngn.audiofx;
+package org.cyanogenmod.audiofx;
import android.os.Parcel;
import android.support.test.runner.AndroidJUnit4;
-import android.test.AndroidTestCase;
-import android.test.suitebuilder.annotation.SmallTest;
-import com.cyngn.audiofx.Preset;
-import org.junit.Assert;
+import org.cyanogenmod.audiofx.Preset;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
diff --git a/tests/src/com/cyngn/audiofx/eq/EqUtilTests.java b/tests/src/com/cyngn/audiofx/eq/EqUtilTests.java
index bca4b85..bc8b21c 100644
--- a/tests/src/com/cyngn/audiofx/eq/EqUtilTests.java
+++ b/tests/src/com/cyngn/audiofx/eq/EqUtilTests.java
@@ -1,8 +1,6 @@
-package com.cyngn.audiofx.eq;
+package org.cyanogenmod.audiofx.eq;
-import android.test.suitebuilder.annotation.SmallTest;
-import com.cyngn.audiofx.Preset;
-import com.cyngn.audiofx.eq.EqUtils;
+import org.cyanogenmod.audiofx.Preset;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
diff --git a/tests/src/com/cyngn/audiofx/service/AudioFxServiceTests.java b/tests/src/com/cyngn/audiofx/service/AudioFxServiceTests.java
index 1bf531c..a9e7651 100644
--- a/tests/src/com/cyngn/audiofx/service/AudioFxServiceTests.java
+++ b/tests/src/com/cyngn/audiofx/service/AudioFxServiceTests.java
@@ -1,4 +1,4 @@
-package com.cyngn.audiofx.service;
+package org.cyanogenmod.audiofx.service;
import android.content.Intent;
import android.media.audiofx.AudioEffect;
@@ -7,14 +7,14 @@ import android.support.test.runner.AndroidJUnit4;
import android.test.suitebuilder.annotation.LargeTest;
import android.util.Log;
-import com.cyngn.audiofx.util.BaseAudioFxServiceInstrumentationTest;
-import com.cyngn.audiofx.util.TestMediaPlayer;
+import org.cyanogenmod.audiofx.util.BaseAudioFxServiceInstrumentationTest;
+import org.cyanogenmod.audiofx.util.TestMediaPlayer;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
-import com.cyngn.audiofx.tests.R;
+import org.cyanogenmod.audiofx.tests.R;
import static org.junit.Assert.*;
diff --git a/tests/src/com/cyngn/audiofx/tests/DebugActivity.java b/tests/src/com/cyngn/audiofx/tests/DebugActivity.java
index 9c98f59..b44dcb3 100644
--- a/tests/src/com/cyngn/audiofx/tests/DebugActivity.java
+++ b/tests/src/com/cyngn/audiofx/tests/DebugActivity.java
@@ -1,4 +1,4 @@
-package com.cyngn.audiofx.tests;
+package org.cyanogenmod.audiofx.tests;
import android.media.AudioManager;
import android.media.AudioSystem;
@@ -6,7 +6,7 @@ import android.media.RingtoneManager;
import android.os.AsyncTask;
import android.util.Log;
-import com.cyngn.audiofx.util.TestDuckingMediaPlayer;
+import org.cyanogenmod.audiofx.util.TestDuckingMediaPlayer;
/**
* Created by roman on 3/8/16.
diff --git a/tests/src/com/cyngn/audiofx/tests/TestActivity.java b/tests/src/com/cyngn/audiofx/tests/TestActivity.java
index 61a6b34..d42b4be 100644
--- a/tests/src/com/cyngn/audiofx/tests/TestActivity.java
+++ b/tests/src/com/cyngn/audiofx/tests/TestActivity.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-package com.cyngn.audiofx.tests;
+package org.cyanogenmod.audiofx.tests;
import android.app.ListActivity;
import android.os.Bundle;
diff --git a/tests/src/com/cyngn/audiofx/util/BaseAudioFxServiceInstrumentationTest.java b/tests/src/com/cyngn/audiofx/util/BaseAudioFxServiceInstrumentationTest.java
index e882c9d..cead14a 100644
--- a/tests/src/com/cyngn/audiofx/util/BaseAudioFxServiceInstrumentationTest.java
+++ b/tests/src/com/cyngn/audiofx/util/BaseAudioFxServiceInstrumentationTest.java
@@ -1,4 +1,4 @@
-package com.cyngn.audiofx.util;
+package org.cyanogenmod.audiofx.util;
import android.content.Context;
import android.content.Intent;
@@ -7,7 +7,7 @@ import android.os.IBinder;
import android.support.test.InstrumentationRegistry;
import android.support.test.rule.ServiceTestRule;
import android.support.test.runner.AndroidJUnit4;
-import com.cyngn.audiofx.service.AudioFxService;
+import org.cyanogenmod.audiofx.service.AudioFxService;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
diff --git a/tests/src/com/cyngn/audiofx/util/TestDuckingMediaPlayer.java b/tests/src/com/cyngn/audiofx/util/TestDuckingMediaPlayer.java
index fc67cc2..b22a338 100644
--- a/tests/src/com/cyngn/audiofx/util/TestDuckingMediaPlayer.java
+++ b/tests/src/com/cyngn/audiofx/util/TestDuckingMediaPlayer.java
@@ -1,10 +1,10 @@
-package com.cyngn.audiofx.util;
+package org.cyanogenmod.audiofx.util;
import android.content.Context;
import android.media.AudioManager;
import android.util.Log;
-import com.cyngn.audiofx.tests.R;
+import org.cyanogenmod.audiofx.tests.R;
import static junit.framework.Assert.assertNotNull;
diff --git a/tests/src/com/cyngn/audiofx/util/TestMediaPlayer.java b/tests/src/com/cyngn/audiofx/util/TestMediaPlayer.java
index ef08d1c..a22f7d4 100644
--- a/tests/src/com/cyngn/audiofx/util/TestMediaPlayer.java
+++ b/tests/src/com/cyngn/audiofx/util/TestMediaPlayer.java
@@ -1,4 +1,4 @@
-package com.cyngn.audiofx.util;
+package org.cyanogenmod.audiofx.util;
import android.content.Context;
import android.content.res.AssetFileDescriptor;
@@ -6,7 +6,7 @@ import android.media.AudioAttributes;
import android.media.AudioManager;
import android.media.MediaPlayer;
-import com.cyngn.audiofx.tests.R;
+import org.cyanogenmod.audiofx.tests.R;
import static junit.framework.Assert.assertNotNull;