Function
test_load_not_a_jar
(not_jar_file, projected_graph_sssp_class, non_exist_java_class)
Source from the content-addressed store, hash-verified
| 94 | ) |
| 95 | @pytest.mark.timeout(3600) |
| 96 | def test_load_not_a_jar(not_jar_file, projected_graph_sssp_class, non_exist_java_class): |
| 97 | with pytest.raises(KeyError): |
| 98 | sssp = JavaApp(not_jar_file, projected_graph_sssp_class) |
| 99 | with pytest.raises(KeyError): |
| 100 | sssp = JavaApp(not_jar_file, non_exist_java_class) |
| 101 | |
| 102 | |
| 103 | @pytest.mark.skipif( |
Callers
nothing calls this directly
Tested by
no test coverage detected