Mercury-IM/app/src/test/java/org/mercury_im/messenger/ExampleUnitTest.java

23 lines
440 B
Java
Raw Normal View History

2019-05-13 03:19:17 +02:00
package org.mercury_im.messenger;
2019-03-27 21:24:47 +01:00
import org.junit.Test;
2019-08-12 17:05:30 +02:00
import static org.junit.Assert.assertEquals;
2019-03-27 21:24:47 +01:00
/**
* 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);
}
2019-08-12 17:05:30 +02:00
@Test
public void test() {
2020-06-06 18:45:20 +02:00
2019-08-12 17:05:30 +02:00
}
2019-03-27 21:24:47 +01:00
}