我有一个使用 openVpn 的项目。我无法实现“断言”相关的库。我怎么做? 找不到 junitimport org.junit.Assert;//not foundif (BuildConfig.DEBUG) Assert.assertEquals("dev", routeparts[3]);
1 回答

侃侃无极
TA贡献2051条经验 获得超10个赞
将您的导入语句更改为import org.junit.Assert.*;
import org.junit.Assert.*;
if (BuildConfig.DEBUG) Assert.assertEquals("dev", routeparts[3]);
添加回答
举报
0/150
提交
取消