Fix internal lint errors

This commit is contained in:
Karl Lessard 2019-05-09 22:23:54 -04:00
parent bf05237063
commit 4678439926
2 changed files with 23 additions and 5 deletions

View File

@ -21,6 +21,9 @@ import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/**
* Unit tests for {@link EagerOperationBuilder} class.
*/
@RunWith(JUnit4.class)
public class EagerOperationBuilderTest {
@ -32,6 +35,7 @@ public class EagerOperationBuilderTest {
new EagerOperationBuilder(session, "Add", "add");
fail();
} catch (IllegalStateException e) {
// expected
}
}
@ -45,6 +49,7 @@ public class EagerOperationBuilderTest {
opBuilder.setAttr("dtype", DataType.FLOAT);
fail();
} catch (IllegalStateException e) {
// expected
}
}
@ -58,7 +63,9 @@ public class EagerOperationBuilderTest {
try {
opBuilder(session, "Const", "var").addControlInput(asrt);
fail();
} catch (UnsupportedOperationException e) {}
} catch (UnsupportedOperationException e) {
// expected
}
}
}

View File

@ -22,6 +22,9 @@ import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/**
* Unit tests for {@link EagerOperation} class.
*/
@RunWith(JUnit4.class)
public class EagerOperationTest {
@ -32,7 +35,9 @@ public class EagerOperationTest {
try {
new EagerOperation(session, 1L, new long[] {1L}, "Add", "add");
fail();
} catch (IllegalStateException e) {}
} catch (IllegalStateException e) {
// expected
}
}
@Test
@ -72,12 +77,16 @@ public class EagerOperationTest {
try {
split.inputListLength("no_such_input");
fail();
} catch (IllegalArgumentException e) {}
} catch (IllegalArgumentException e) {
// expected
}
try {
split.outputListLength("no_such_output");
fail();
} catch (IllegalArgumentException e) {}
} catch (IllegalArgumentException e) {
// expected
}
}
}
@ -105,7 +114,9 @@ public class EagerOperationTest {
try {
add.outputListLength("z");
fail();
} catch (IllegalStateException e) {}
} catch (IllegalStateException e) {
// expected
}
}
private static EagerOperationBuilder opBuilder(EagerSession session, String type, String name) {