@@ -54,42 +54,42 @@ public void testAnd() {
5454
5555 @ Test
5656 public void testComparableGreaterThan () {
57- assertTrue (((BitType ) ops .run ("logic.greaterThan" , new BitType (), 5.0 , 3.0 )).get ());
58- assertFalse (((BitType ) ops .run ("logic.greaterThan" , new BitType (), 5.0 , 6.0 )).get ());
57+ assertTrue (((BitType ) ops .run ("logic.greaterThan" , 5.0 , 3.0 )).get ());
58+ assertFalse (((BitType ) ops .run ("logic.greaterThan" , 5.0 , 6.0 )).get ());
5959 }
6060
6161 @ Test
6262 public void testComparableGreaterThanOrEqual () {
63- assertTrue (((BitType ) ops .run ("logic.greaterThanOrEqual" , new BitType (), 5.0 , 3.0 )).get ());
64- assertTrue (((BitType ) ops .run ("logic.greaterThanOrEqual" , new BitType (), 5.0 , 5.0 )).get ());
65- assertFalse (((BitType ) ops .run ("logic.greaterThanOrEqual" , new BitType (), 5.0 , 6.0 )).get ());
63+ assertTrue (((BitType ) ops .run ("logic.greaterThanOrEqual" , 5.0 , 3.0 )).get ());
64+ assertTrue (((BitType ) ops .run ("logic.greaterThanOrEqual" , 5.0 , 5.0 )).get ());
65+ assertFalse (((BitType ) ops .run ("logic.greaterThanOrEqual" , 5.0 , 6.0 )).get ());
6666 }
6767
6868 @ Test
6969 public void testComparableLessThan () {
70- assertFalse (((BitType ) ops .run ("logic.lessThan" , new BitType (), 5.0 , 3.0 )).get ());
71- assertTrue (((BitType ) ops .run ("logic.lessThan" , new BitType (), 5.0 , 6.0 )).get ());
70+ assertFalse (((BitType ) ops .run ("logic.lessThan" , 5.0 , 3.0 )).get ());
71+ assertTrue (((BitType ) ops .run ("logic.lessThan" , 5.0 , 6.0 )).get ());
7272 }
7373
7474 @ Test
7575 public void testComparableLessThanOrEqual () {
76- assertFalse (((BitType ) ops .run ("logic.lessThanOrEqual" , new BitType (), 5.0 , 3.0 )).get ());
77- assertTrue (((BitType ) ops .run ("logic.lessThanOrEqual" , new BitType (), 5.0 , 6.0 )).get ());
78- assertTrue (((BitType ) ops .run ("logic.lessThanOrEqual" , new BitType (), 5.0 , 5.0 )).get ());
76+ assertFalse (((BitType ) ops .run ("logic.lessThanOrEqual" , 5.0 , 3.0 )).get ());
77+ assertTrue (((BitType ) ops .run ("logic.lessThanOrEqual" , 5.0 , 6.0 )).get ());
78+ assertTrue (((BitType ) ops .run ("logic.lessThanOrEqual" , 5.0 , 5.0 )).get ());
7979 }
8080
8181 @ Test
8282 public void testObjectsEqual () {
83- assertFalse (((BitType ) ops .run ("logic.equal" , new BitType (), 2 , 1 )).get ());
84- assertTrue (((BitType ) ops .run ("logic.equal" , new BitType (), 2 , 2 )).get ());
85- assertFalse (((BitType ) ops .run ("logic.equal" , new BitType (), 2 , 3 )).get ());
83+ assertFalse (((BitType ) ops .run ("logic.equal" , 2 , 1 )).get ());
84+ assertTrue (((BitType ) ops .run ("logic.equal" , 2 , 2 )).get ());
85+ assertFalse (((BitType ) ops .run ("logic.equal" , 2 , 3 )).get ());
8686 }
8787
8888 @ Test
8989 public void testObjectsNotEqual () {
90- assertTrue (((BitType ) ops .run ("logic.notEqual" , new BitType (), 2 , 1 )).get ());
91- assertFalse (((BitType ) ops .run ("logic.notEqual" , new BitType (), 2 , 2 )).get ());
92- assertTrue (((BitType ) ops .run ("logic.notEqual" , new BitType (), 2 , 3 )).get ());
90+ assertTrue (((BitType ) ops .run ("logic.notEqual" , 2 , 1 )).get ());
91+ assertFalse (((BitType ) ops .run ("logic.notEqual" , 2 , 2 )).get ());
92+ assertTrue (((BitType ) ops .run ("logic.notEqual" , 2 , 3 )).get ());
9393 }
9494
9595 @ Test
0 commit comments