Function
test_load_empty_jar
(empty_jar, projected_graph_sssp_class, non_exist_java_class)
Source from the content-addressed store, hash-verified
| 118 | ) |
| 119 | @pytest.mark.timeout(3600) |
| 120 | def test_load_empty_jar(empty_jar, projected_graph_sssp_class, non_exist_java_class): |
| 121 | with pytest.raises(KeyError): |
| 122 | sssp = JavaApp(empty_jar, projected_graph_sssp_class) |
| 123 | with pytest.raises(KeyError): |
| 124 | sssp = JavaApp(empty_jar, non_exist_java_class) |
| 125 | |
| 126 | |
| 127 | @pytest.mark.skipif( |
Callers
nothing calls this directly
Tested by
no test coverage detected