package hibernateTest.models;
import hibernateTest.models.*;
//このメインクラスを実行すると、Hibernateのテストが行えます。
public class UsersMain {
public static void main(String args[]){
Users.setUp();
Users.createUser("test1","test1","http://localhost:8080/iconImage/b4bb7db0-cc0c-4ee1-816f-8304add12da8.jpg");
Users.createUser("test2","test2","http://localhost:8080/iconImage/b4bb7db0-cc0c-4ee1-816f-8304add12da8.jpg");
Users.getUserById("testId");
Users.tearDown();
}
}