Function
test_load_gar_file
(a_gar_file, projected_graph_sssp_class, non_exist_java_class)
Source from the content-addressed store, hash-verified
| 106 | ) |
| 107 | @pytest.mark.timeout(3600) |
| 108 | def test_load_gar_file(a_gar_file, projected_graph_sssp_class, non_exist_java_class): |
| 109 | with pytest.raises(KeyError): |
| 110 | sssp = JavaApp(a_gar_file, projected_graph_sssp_class) |
| 111 | with pytest.raises(KeyError): |
| 112 | sssp = JavaApp(a_gar_file, non_exist_java_class) |
| 113 | |
| 114 | |
| 115 | @pytest.mark.skipif( |
Callers
nothing calls this directly
Tested by
no test coverage detected