Skip to content

Commit 564b47d

Browse files
committed
Corrected package of androidTest fuse test files
1 parent 472261d commit 564b47d

File tree

6 files changed

+33
-40
lines changed

6 files changed

+33
-40
lines changed

android/fuse/src/androidTest/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
android:theme="@style/Theme.Fuse"
66
>
77
<activity
8-
android:name="com.breautek.fuse.testtools.TestFuseActivity"
8+
android:name="com.breautek.fuse.TestFuseActivity"
99
android:label="@string/app_name"
1010
android:exported="true"
1111
>

android/fuse/src/androidTest/java/com/breautek/fuse/ExampleInstrumentedTest.java

Lines changed: 0 additions & 26 deletions
This file was deleted.

android/fuse/src/androidTest/java/com/breautek/fuse/testtools/FuseAPITest.java renamed to android/fuse/src/androidTest/java/com/breautek/fuse/FuseAPITest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
limitations under the License.
1616
*/
1717

18-
package com.breautek.fuse.testtools;
18+
package com.breautek.fuse;
1919

2020
import androidx.test.ext.junit.runners.AndroidJUnit4;
2121
import androidx.test.ext.junit.rules.ActivityScenarioRule;
@@ -28,6 +28,8 @@
2828

2929
import static org.junit.Assert.*;
3030

31+
import com.breautek.fuse.testtools.FuseTestAPIClient;
32+
3133
import java.security.KeyManagementException;
3234
import java.security.NoSuchAlgorithmException;
3335
import java.util.concurrent.CountDownLatch;
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
2+
/*
3+
Copyright 2023 Breautek
4+
5+
Licensed under the Apache License, Version 2.0 (the "License");
6+
you may not use this file except in compliance with the License.
7+
You may obtain a copy of the License at
8+
9+
http://www.apache.org/licenses/LICENSE-2.0
10+
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
*/
17+
18+
package com.breautek.fuse;
19+
20+
import android.app.Application;
21+
22+
public class FuseTestApplication extends Application {
23+
@Override
24+
public void onCreate() {
25+
super.onCreate();
26+
}
27+
}

android/fuse/src/androidTest/java/com/breautek/fuse/testtools/TestFuseActivity.java renamed to android/fuse/src/androidTest/java/com/breautek/fuse/TestFuseActivity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
limitations under the License.
1616
*/
1717

18-
package com.breautek.fuse.testtools;
18+
package com.breautek.fuse;
1919

20-
import com.breautek.fuse.FuseContext;
2120
import com.breautek.fuse.plugins.echo.EchoPlugin;
21+
import com.breautek.fuse.testtools.FuseTestActivity;
2222

2323
public class TestFuseActivity extends FuseTestActivity {
2424

android/fuse/src/androidTest/java/com/breautek/fuse/testtools/FuseTestApplication.java

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)