コード例 #1
0
ファイル: NEGTest.java プロジェクト: rodrixan/TestCAS
 @Test
 public void shouldReturnPositiveValue() {
   negOperation = new NEG(new CASNumber(-3));
   assertEquals(3, negOperation.getValue());
 }
コード例 #2
0
ファイル: NEGTest.java プロジェクト: rodrixan/TestCAS
 @Test
 public void shouldReturnNegativeValue() {
   negOperation = new NEG(new CASNumber(5));
   assertEquals(-5, negOperation.getValue());
 }