use of mbg.test.ib2j5.generated.conditional.model.Fieldsonly in project generator by mybatis.
the class HierarchicalJava5Test method testFieldsOnlyInsert.
@Test
public void testFieldsOnlyInsert() {
FieldsonlyDAO dao = getFieldsonlyDAO();
try {
Fieldsonly record = new Fieldsonly();
record.setDoublefield(11.22);
record.setFloatfield(33.44);
record.setIntegerfield(5);
dao.insert(record);
FieldsonlyExample example = new FieldsonlyExample();
example.createCriteria().andIntegerfieldEqualTo(5);
List<Fieldsonly> answer = dao.selectByExample(example);
assertEquals(1, answer.size());
Fieldsonly returnedRecord = answer.get(0);
assertEquals(record.getIntegerfield(), returnedRecord.getIntegerfield());
assertEquals(record.getDoublefield(), returnedRecord.getDoublefield());
assertEquals(record.getFloatfield(), returnedRecord.getFloatfield());
} catch (Exception e) {
fail(e.getMessage());
}
}
use of mbg.test.ib2j5.generated.conditional.model.Fieldsonly in project generator by mybatis.
the class HierarchicalJava5Test method testFieldsOnlySelectByExample.
@Test
public void testFieldsOnlySelectByExample() {
FieldsonlyDAO dao = getFieldsonlyDAO();
try {
Fieldsonly record = new Fieldsonly();
record.setDoublefield(11.22);
record.setFloatfield(33.44);
record.setIntegerfield(5);
dao.insert(record);
record = new Fieldsonly();
record.setDoublefield(44.55);
record.setFloatfield(66.77);
record.setIntegerfield(8);
dao.insert(record);
record = new Fieldsonly();
record.setDoublefield(88.99);
record.setFloatfield(100.111);
record.setIntegerfield(9);
dao.insert(record);
FieldsonlyExample example = new FieldsonlyExample();
example.createCriteria().andIntegerfieldGreaterThan(5);
List<Fieldsonly> answer = dao.selectByExample(example);
assertEquals(2, answer.size());
example = new FieldsonlyExample();
answer = dao.selectByExample(example);
assertEquals(3, answer.size());
} catch (Exception e) {
fail(e.getMessage());
}
}
use of mbg.test.ib2j5.generated.conditional.model.Fieldsonly in project generator by mybatis.
the class FlatJava5Test method testFieldsOnlySelectByExampleNoCriteria.
@Test
public void testFieldsOnlySelectByExampleNoCriteria() {
FieldsonlyDAO dao = getFieldsonlyDAO();
try {
Fieldsonly record = new Fieldsonly();
record.setDoublefield(11.22);
record.setFloatfield(33.44);
record.setIntegerfield(5);
dao.insert(record);
record = new Fieldsonly();
record.setDoublefield(44.55);
record.setFloatfield(66.77);
record.setIntegerfield(8);
dao.insert(record);
record = new Fieldsonly();
record.setDoublefield(88.99);
record.setFloatfield(100.111);
record.setIntegerfield(9);
dao.insert(record);
FieldsonlyExample example = new FieldsonlyExample();
example.createCriteria();
List<Fieldsonly> answer = dao.selectByExample(example);
assertEquals(3, answer.size());
answer = dao.selectByExample(null);
assertEquals(3, answer.size());
} catch (SQLException e) {
fail(e.getMessage());
}
}
use of mbg.test.ib2j5.generated.conditional.model.Fieldsonly in project generator by mybatis.
the class FlatJava5Test method testFieldsOnlyDeleteByExample.
@Test
public void testFieldsOnlyDeleteByExample() {
FieldsonlyDAO dao = getFieldsonlyDAO();
try {
Fieldsonly record = new Fieldsonly();
record.setDoublefield(11.22);
record.setFloatfield(33.44);
record.setIntegerfield(5);
dao.insert(record);
record = new Fieldsonly();
record.setDoublefield(44.55);
record.setFloatfield(66.77);
record.setIntegerfield(8);
dao.insert(record);
record = new Fieldsonly();
record.setDoublefield(88.99);
record.setFloatfield(100.111);
record.setIntegerfield(9);
dao.insert(record);
FieldsonlyExample example = new FieldsonlyExample();
example.createCriteria().andIntegerfieldGreaterThan(5);
int rows = dao.deleteByExample(example);
assertEquals(2, rows);
example = new FieldsonlyExample();
List<Fieldsonly> answer = dao.selectByExample(example);
assertEquals(1, answer.size());
} catch (SQLException e) {
fail(e.getMessage());
}
}
use of mbg.test.ib2j5.generated.conditional.model.Fieldsonly in project generator by mybatis.
the class FlatJava5Test method testFieldsOnlySelectByExample.
@Test
public void testFieldsOnlySelectByExample() {
FieldsonlyDAO dao = getFieldsonlyDAO();
try {
Fieldsonly record = new Fieldsonly();
record.setDoublefield(11.22);
record.setFloatfield(33.44);
record.setIntegerfield(5);
dao.insert(record);
record = new Fieldsonly();
record.setDoublefield(44.55);
record.setFloatfield(66.77);
record.setIntegerfield(8);
dao.insert(record);
record = new Fieldsonly();
record.setDoublefield(88.99);
record.setFloatfield(100.111);
record.setIntegerfield(9);
dao.insert(record);
FieldsonlyExample example = new FieldsonlyExample();
example.createCriteria().andIntegerfieldGreaterThan(5);
List<Fieldsonly> answer = dao.selectByExample(example);
assertEquals(2, answer.size());
example = new FieldsonlyExample();
answer = dao.selectByExample(example);
assertEquals(3, answer.size());
} catch (SQLException e) {
fail(e.getMessage());
}
}
Aggregations