我有一个使用openVpn的项目。我无法实现“ Assert”相关的库。我怎么做? 找不到Junit
import org.junit.Assert;//not found
if (BuildConfig.DEBUG) Assert.assertEquals("dev", routeparts[3]);
答案 0 :(得分:0)
将导入语句更改为import org.junit.Assert.*;
import org.junit.Assert.*;
if (BuildConfig.DEBUG) Assert.assertEquals("dev", routeparts[3]);