为什么 assertEquals(double,double) 在 JUnit 中被弃用?
我想知道为什么被弃用。assertEquals(double, double)
我使用过JUnit 4.11。import static org.junit.Assert.assertEquals;
以下是我的代码:
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class AccountTest {
@Test
public void test() {
Account checking = new Account(Account.CHECKING);
checking.deposit(1000.0);
checking.withdraw(100.0);
assertEquals(900.0, checking.getBalance());
}
}
checking.getBalance()
返回双精度值。
可能出了什么问题?