Package mbg.test.ib2j2.generated.conditional.model

Examples of mbg.test.ib2j2.generated.conditional.model.PkblobsExample.clear()


            AwfulTableExample example = new AwfulTableExample();
            example.createCriteria().andEMailLike("fred@%");
            int rows = dao.countByExample(example);
            assertEquals(1, rows);
   
            example.clear();
            rows = dao.countByExample(example);
            assertEquals(2, rows);
        } catch (Exception e) {
            fail(e.getMessage());
        }
View Full Code Here


            AwfulTableExample example = new AwfulTableExample();
            example.createCriteria().andEMailLike("fred2@%");
            int rows = dao.updateByExample(newRecord, example);
            assertEquals(1, rows);

            example.clear();
            example.createCriteria().andCustomerIdEqualTo(new Integer(58));
            List answer = dao.selectByExample(example);
            assertEquals(1, answer.size());

            AwfulTable returnedRecord = (AwfulTable) answer.get(0);
View Full Code Here

            example = new AwfulTableExample();
            example.createCriteria().andEMailLike("fred@%");
            int rows = dao.deleteByExample(example);
            assertEquals(1, rows);
   
            example.clear();
            answer = dao.selectByExample(example);
            assertEquals(1, answer.size());
        } catch (Exception e) {
            fail(e.getMessage());
        }
View Full Code Here

            FieldsblobsExample example = new FieldsblobsExample();
            example.createCriteria().andFirstnameLike("S%");
            int rows = dao.countByExample(example);
            assertEquals(1, rows);
   
            example.clear();
            rows = dao.countByExample(example);
            assertEquals(2, rows);
        } catch (Exception e) {
            fail(e.getMessage());
        }
View Full Code Here

            example.createCriteria().andIntegerfieldGreaterThan(new Integer(5));
   
            int rows = dao.countByExample(example);
            assertEquals(2, rows);
   
            example.clear();
            rows = dao.countByExample(example);
            assertEquals(3, rows);
        } catch (Exception e) {
            fail(e.getMessage());
        }
View Full Code Here

            example.createCriteria().andIntegerfieldGreaterThan(new Integer(5));
           
            int rows = dao.updateByExampleSelective(record, example);
            assertEquals(2, rows);

            example.clear();
            example.createCriteria().andIntegerfieldEqualTo(new Integer(5));
            List answer = dao.selectByExample(example);
            assertEquals(1, answer.size());
            record = (Fieldsonly) answer.get(0);
            assertEquals(record.getDoublefield(), new Double(11.22));
View Full Code Here

            record = (Fieldsonly) answer.get(0);
            assertEquals(record.getDoublefield(), new Double(11.22));
            assertEquals(record.getFloatfield(), new Double(33.44));
            assertEquals(record.getIntegerfield(), new Integer(5));
           
            example.clear();
            example.createCriteria().andIntegerfieldEqualTo(new Integer(8));
            answer = dao.selectByExample(example);
            assertEquals(1, answer.size());
            record = (Fieldsonly) answer.get(0);
            assertEquals(record.getDoublefield(), new Double(99));
View Full Code Here

            record = (Fieldsonly) answer.get(0);
            assertEquals(record.getDoublefield(), new Double(99));
            assertEquals(record.getFloatfield(), new Double(66.77));
            assertEquals(record.getIntegerfield(), new Integer(8));
           
            example.clear();
            example.createCriteria().andIntegerfieldEqualTo(new Integer(9));
            answer = dao.selectByExample(example);
            assertEquals(1, answer.size());
            record = (Fieldsonly) answer.get(0);
            assertEquals(record.getDoublefield(), new Double(99));
View Full Code Here

            example.createCriteria().andIntegerfieldEqualTo(new Integer(5));
           
            int rows = dao.updateByExample(record, example);
            assertEquals(1, rows);

            example.clear();
            example.createCriteria().andIntegerfieldEqualTo(new Integer(22));
            List answer = dao.selectByExample(example);
            assertEquals(1, answer.size());
            record = (Fieldsonly) answer.get(0);
            assertNull(record.getDoublefield());
View Full Code Here

            PkblobsExample example = new PkblobsExample();
            example.createCriteria().andIdLessThan(new Integer(4));
            int rows = dao.countByExample(example);
            assertEquals(1, rows);
   
            example.clear();
            rows = dao.countByExample(example);
            assertEquals(2, rows);
        } catch (Exception e) {
            fail(e.getMessage());
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.