我有简单的Jar项目,由android应用程序引用。 然后,我有我的常用函数Functions.java,我想创建单元测试类。
以下是Functions.java中的示例函数:
public static double getAltitudeBySensor(float atmosphericPressure) {
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD
&& atmosphericPressure > 0d) {
return SensorManager.getAltitude(SensorManager.PRESSURE_STANDARD_ATMOSPHERE, atmosphericPressure);
}
return 0d;
}
public static double toPixelX(double imageSize, android.location.Location upperLeft, android.location.Location lowerRight, android.location.Location target) {
double hypotenuse = upperLeft.distanceTo(target);
double bearing = upperLeft.bearingTo(target);
double currentDistanceX = Math.sin(bearing * Math.PI / OneEightyDeg) * hypotenuse;
// "percentage to mark the position"
double totalHypotenuse = upperLeft.distanceTo(lowerRight);
double totalDistanceX = totalHypotenuse * Math.sin(upperLeft.bearingTo(lowerRight) * Math.PI / OneEightyDeg);
double currentPixelX = currentDistanceX / totalDistanceX * imageSize;
return currentPixelX;
}
对正确方向的任何指导表示赞赏。
答案 0 :(得分:0)
这两种方法都依赖于外部代码,因此难以进行单元测试。
如果你真的想要单独测试逻辑,那么你需要重构,这样他们依赖于接口,然后构建实现这些接口的模拟,这样你就可以传入已知数据并测试你是否收到了合适的输出