Add a dummy test to NonEmptySetTest.Guava

Add a dummy test so that when IntelliJ (incorrectly) scans NonEmptySetTest.Guava
looking for tests, it finds one and doesn't complain.
This commit is contained in:
Ross Nicoll 2016-05-25 10:17:02 +01:00
parent e3727a1de6
commit f7c0756526

View File

@ -44,6 +44,13 @@ class NonEmptySetTest {
.suppressing(CollectionRetainAllTester::class.java.getMethods().toList())
.createTestSuite()
}
/**
* For some reason IntelliJ really wants to scan this class for tests and fail when
* it doesn't find any. This stops that error from occurring.
*/
@Test fun dummy() {
}
}
/**