Skip to content

Commit

Permalink
throw an exception to see if CI emulator tasks are actually running
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Jun 9, 2023
1 parent fa85d63 commit b99465b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ open class MD5UnitTest: DigestUnitTest() {
@Test
final override fun givenDigest_whenDigested_thenLengthMatchesOutput() {
super.givenDigest_whenDigested_thenLengthMatchesOutput()

throw IllegalStateException("Android Test failure")
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ open class SHA1UnitTest: DigestUnitTest() {
@Test
final override fun givenDigest_whenDigested_thenLengthMatchesOutput() {
super.givenDigest_whenDigested_thenLengthMatchesOutput()

throw IllegalStateException("Android Test failure")
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ open class SHA512UnitTest: DigestUnitTest() {
@Test
final override fun givenDigest_whenDigested_thenLengthMatchesOutput() {
super.givenDigest_whenDigested_thenLengthMatchesOutput()

throw IllegalStateException("Android Test failure")
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ open class TupleHash256UnitTest: DigestUnitTest() {
@Test
final override fun givenDigest_whenDigested_thenLengthMatchesOutput() {
super.givenDigest_whenDigested_thenLengthMatchesOutput()

throw IllegalStateException("Android Test failure")
}

}

0 comments on commit b99465b

Please sign in to comment.