{new Person(1, "Kevin", 30, "Coder"), new Person(2, "Vivian", 30, "Wife"),
new Person(3, "Kitty", 2, "Daughter")};
@Test
public void testSelect1() {
SqlSession tdhsSession = getTDHSSession();
Person tdhsPerson = tdhsSession.getMapper(PersonMapper.class).selectPerson(2);
assertEquals(data[1], tdhsPerson);
SqlSession mysqlSession = getTDHSSession();
Person mysqlPerson = mysqlSession.getMapper(PersonMapper.class).selectPerson(2);
assertEquals(mysqlPerson, tdhsPerson);
tdhsSession.close();
mysqlSession.close();
}