雑多備忘録

Unit test

  • Exception で判定する場合、try/catch/fail ではなく @Test(expected=XXXException.class)

  • assertTrue() のとき Assertions.assertThat() が使えるか考える

Assertions.assertThat(marshall).contains("John is CustomPerson");
  • ksession は try/finally で dispose

logger

  • {} 使って interpolation