use of org.apache.zeppelin.notebook.repo.GitNotebookRepo in project zeppelin by apache.
the class PluginManagerTest method testLoadGitNotebookRepo.
@Test
public void testLoadGitNotebookRepo() throws IOException {
NotebookRepo notebookRepo = PluginManager.get().loadNotebookRepo("org.apache.zeppelin.notebook.repo.GitNotebookRepo");
assertTrue(notebookRepo instanceof GitNotebookRepo);
}
Aggregations