mirror of
https://github.com/Qortal/qortal.git
synced 2025-06-19 22:21:22 +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;
|
|
|
|
}
|