@Test
public void executeJPAQueriesTest()
{
// Insert records
persistPerson("1", "person1", 10, new Office(1, "Company1", "Location 1"));
persistPerson("2", "person2", 20, new Office(2, "Company2", "Location 2"));
persistPerson("3", "person3", 30, new Office(3, "Company3", "Location 3"));
persistPerson("4", "person4", 40, new Office(4, "Company4", "Location 4"));
// Select query, without where clause
clearEm();
String findWithOutWhereClause = "Select p from PersonEmbeddedKVStore p";
List<PersonEmbeddedKVStore> results = executeSelectQuery(findWithOutWhereClause);