Skip to content
Snippets Groups Projects
Commit bb54dfd4 authored by Felix Sidokhine's avatar Felix Sidokhine
Browse files

added more skeletons

parent 1a7265bf
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ public class UserProfileDAO extends AbstractDao<UserProfile> {
public UserProfileDAO() {
SQLConnection connection = DataStore.connectionPool.getConnection();
try {
this.setTableName("system");
this.setTableName("local_directory");
this.setTClass(UserProfile.class);
String createTable = "CREATE TABLE directory (" +
"username varchar(255), " +
......
package net.jami.datastore.dao;
import static org.junit.jupiter.api.Assertions.*;
class ContactDaoTest {
}
\ No newline at end of file
package net.jami.datastore.dao;
import static org.junit.jupiter.api.Assertions.*;
class SystemDaoTest {
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment