Skip to content

Commit

Permalink
delete test dir
Browse files Browse the repository at this point in the history
  • Loading branch information
zyyoona7 committed Sep 6, 2017
1 parent ece992b commit 9bb0a7c
Showing 1 changed file with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package com.zyyoona7.lib;

import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;

import org.junit.Test;
import org.junit.runner.RunWith;

import static org.junit.Assert.*;

/**
* Instrumentation 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() throws Exception {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();

assertEquals("com.zyyoona7.lib.test", appContext.getPackageName());
}
}

0 comments on commit 9bb0a7c

Please sign in to comment.