Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -235,15 +235,6 @@ public void testSerializable() throws Exception {
@Test
public void testNulls() throws Exception {
for (Class<?> classToTest : findClassesToTest(loadClassesInPackage(), NULL_TEST_METHOD_NAMES)) {
if (classToTest.getSimpleName().equals("ReflectionFreeAssertThrows")) {
/*
* These classes handle null properly but throw IllegalArgumentException for the default
* Class argument that this test uses. Normally we'd fix that by declaring a
* ReflectionFreeAssertThrowsTest with a testNulls method, but that's annoying to have to do
* for a package-private utility class. So we skip the class entirely instead.
*/
continue;
}
try {
tester.doTestNulls(classToTest, visibility);
} catch (Throwable e) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,15 +235,6 @@ public void testSerializable() throws Exception {
@Test
public void testNulls() throws Exception {
for (Class<?> classToTest : findClassesToTest(loadClassesInPackage(), NULL_TEST_METHOD_NAMES)) {
if (classToTest.getSimpleName().equals("ReflectionFreeAssertThrows")) {
/*
* These classes handle null properly but throw IllegalArgumentException for the default
* Class argument that this test uses. Normally we'd fix that by declaring a
* ReflectionFreeAssertThrowsTest with a testNulls method, but that's annoying to have to do
* for a package-private utility class. So we skip the class entirely instead.
*/
continue;
}
try {
tester.doTestNulls(classToTest, visibility);
} catch (Throwable e) {
Expand Down
Loading