ODP-AppVehOwn/app/src/test/java/eu/csc/vehown/ExampleUnitTest.java

30 lines
593 B
Java

package eu.csc.vehown;
import org.junit.Test;
import java.util.Properties;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() {
assertEquals(4, 2 + 2);
}
@Test
public void testProperties(){
Properties properties = new Properties();
String p = BuildConfig.ENVIRONMENT_JSONDATA;
System.out.println(p);
}
}