mirror of
https://github.com/Qortal/qortal.git
synced 2025-03-29 00:36:05 +00:00
Added RepositoryManager.closeRepositoryFactory() to allow swapping out of repositories during unit testing Added some more unit tests - all pass!
10 lines
163 B
Java
10 lines
163 B
Java
package repository;
|
|
|
|
public interface RepositoryFactory {
|
|
|
|
public Repository getRepository() throws DataException;
|
|
|
|
public void close() throws DataException;
|
|
|
|
}
|