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