Updated on 2026-08-14

This commit is contained in:
Tangem 2019-11-01 15:38:58 +03:00
parent 4d53e990d2
commit 4ee67b0555
272 changed files with 121 additions and 112 deletions

View file

@ -0,0 +1,27 @@
package com.tangem.tangem_sdk;
import android.content.Context;
import androidx.test.InstrumentationRegistry;
import androidx.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.assertEquals;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();
assertEquals("com.tangem.card_android.test", appContext.getPackageName());
}
}