You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
389 B
21 lines
389 B
import org.junit.Test; |
|
|
|
import static org.junit.Assert.*; |
|
|
|
/** |
|
*<p> |
|
* 它将在开发机器 (主机) 上执行。 本地单元测试 |
|
* 具体请参考官网: http://d.android.com/tools/testing |
|
*</p> |
|
* |
|
* @Author: entfrm开发团队-王翔 |
|
* @Date: 2022/9/26 |
|
*/ |
|
public class ExampleUnitTest { |
|
|
|
@Test |
|
public void addition_isCorrect() { |
|
assertEquals(4, 2 + 2); |
|
} |
|
|
|
} |