Updated on 2026-08-14

This commit is contained in:
Tangem 2019-09-02 15:15:30 +03:00
parent 61d87ee7d6
commit b4d7f4d5be
260 changed files with 322 additions and 324 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.*;
/**
* 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());
}
}