コード例 #1
0
ファイル: LeftTest.java プロジェクト: m3dev/scalaflavor4j
 @Test
 public void isRight_A$() throws Exception {
   Either<String, Integer> target = Left.apply("foo");
   boolean actual = target.isRight();
   boolean expected = false;
   assertThat(actual, is(equalTo(expected)));
 }