2020-10-01から1ヶ月間の記事一覧
LiveData使ってるクラスのテストをSpekで書こうとするとよく出てくるエラー。 エラー内容 Method getMainLooper in android.os.Looper not mocked. See http://g.co/androidstudio/not-mocked for details. テスト用のTaskExecutorを用意する class TestArch…
@Test fun test_exception() { assertThrows(IllegalArgumentException::class.java) { runBlocking { testMethod() } } } assertThrowsにラムダを渡すことで例外発生のテストを書くことが出来る