org.springframework.jdbc.core.test.ConcretePerson Java Examples
The following examples show how to use
org.springframework.jdbc.core.test.ConcretePerson.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BeanPropertyRowMapperTests.java From spring-analysis-note with MIT License | 5 votes |
@Test public void testMappingWithInheritance() throws Exception { Mock mock = new Mock(); List<ConcretePerson> result = mock.getJdbcTemplate().query( "select name, age, birth_date, balance from people", new BeanPropertyRowMapper<>(ConcretePerson.class)); assertEquals(1, result.size()); verifyPerson(result.get(0)); mock.verifyClosed(); }
Example #2
Source File: BeanPropertyRowMapperTests.java From spring-analysis-note with MIT License | 5 votes |
@Test public void testMappingWithNoUnpopulatedFieldsFound() throws Exception { Mock mock = new Mock(); List<ConcretePerson> result = mock.getJdbcTemplate().query( "select name, age, birth_date, balance from people", new BeanPropertyRowMapper<>(ConcretePerson.class, true)); assertEquals(1, result.size()); verifyPerson(result.get(0)); mock.verifyClosed(); }
Example #3
Source File: BeanPropertyRowMapperTests.java From java-technology-stack with MIT License | 5 votes |
@Test public void testMappingWithInheritance() throws Exception { Mock mock = new Mock(); List<ConcretePerson> result = mock.getJdbcTemplate().query( "select name, age, birth_date, balance from people", new BeanPropertyRowMapper<>(ConcretePerson.class)); assertEquals(1, result.size()); verifyPerson(result.get(0)); mock.verifyClosed(); }
Example #4
Source File: BeanPropertyRowMapperTests.java From java-technology-stack with MIT License | 5 votes |
@Test public void testMappingWithNoUnpopulatedFieldsFound() throws Exception { Mock mock = new Mock(); List<ConcretePerson> result = mock.getJdbcTemplate().query( "select name, age, birth_date, balance from people", new BeanPropertyRowMapper<>(ConcretePerson.class, true)); assertEquals(1, result.size()); verifyPerson(result.get(0)); mock.verifyClosed(); }
Example #5
Source File: BeanPropertyRowMapperTests.java From spring4-understanding with Apache License 2.0 | 5 votes |
@Test public void testMappingWithInheritance() throws Exception { Mock mock = new Mock(); List<ConcretePerson> result = mock.getJdbcTemplate().query( "select name, age, birth_date, balance from people", new BeanPropertyRowMapper<ConcretePerson>(ConcretePerson.class)); assertEquals(1, result.size()); verifyConcretePerson(result.get(0)); mock.verifyClosed(); }
Example #6
Source File: BeanPropertyRowMapperTests.java From spring4-understanding with Apache License 2.0 | 5 votes |
@Test public void testMappingWithNoUnpopulatedFieldsFound() throws Exception { Mock mock = new Mock(); List<ConcretePerson> result = mock.getJdbcTemplate().query( "select name, age, birth_date, balance from people", new BeanPropertyRowMapper<ConcretePerson>(ConcretePerson.class, true)); assertEquals(1, result.size()); verifyConcretePerson(result.get(0)); mock.verifyClosed(); }
Example #7
Source File: BeanPropertyRowMapperTests.java From effectivejava with Apache License 2.0 | 5 votes |
@Test public void testMappingWithInheritance() throws Exception { Mock mock = new Mock(); List<ConcretePerson> result = mock.getJdbcTemplate().query( "select name, age, birth_date, balance from people", new BeanPropertyRowMapper<ConcretePerson>(ConcretePerson.class)); assertEquals(1, result.size()); verifyConcretePerson(result.get(0)); mock.verifyClosed(); }
Example #8
Source File: BeanPropertyRowMapperTests.java From effectivejava with Apache License 2.0 | 5 votes |
@Test public void testMappingWithNoUnpopulatedFieldsFound() throws Exception { Mock mock = new Mock(); List<ConcretePerson> result = mock.getJdbcTemplate().query( "select name, age, birth_date, balance from people", new BeanPropertyRowMapper<ConcretePerson>(ConcretePerson.class, true)); assertEquals(1, result.size()); verifyConcretePerson(result.get(0)); mock.verifyClosed(); }
Example #9
Source File: ParameterizedBeanPropertyRowMapperTests.java From effectivejava with Apache License 2.0 | 5 votes |
@Test public void testMappingWithInheritance() throws Exception { Mock mock = new Mock(); List<ConcretePerson> result = mock.getJdbcTemplate().query( "select name, age, birth_date, balance from people", ParameterizedBeanPropertyRowMapper.newInstance(ConcretePerson.class)); assertEquals(1, result.size()); verifyConcretePerson(result.get(0)); mock.verifyClosed(); }
Example #10
Source File: AbstractRowMapperTests.java From spring-analysis-note with MIT License | 4 votes |
protected void verifyPerson(ConcretePerson bean) throws Exception { assertEquals("Bubba", bean.getName()); assertEquals(22L, bean.getAge()); assertEquals(new java.util.Date(1221222L), bean.getBirth_date()); assertEquals(new BigDecimal("1234.56"), bean.getBalance()); }
Example #11
Source File: AbstractRowMapperTests.java From java-technology-stack with MIT License | 4 votes |
protected void verifyPerson(ConcretePerson bean) throws Exception { assertEquals("Bubba", bean.getName()); assertEquals(22L, bean.getAge()); assertEquals(new java.util.Date(1221222L), bean.getBirth_date()); assertEquals(new BigDecimal("1234.56"), bean.getBalance()); }
Example #12
Source File: AbstractRowMapperTests.java From spring4-understanding with Apache License 2.0 | 4 votes |
protected void verifyConcretePerson(ConcretePerson bean) throws Exception { assertEquals("Bubba", bean.getName()); assertEquals(22L, bean.getAge()); assertEquals(new java.util.Date(1221222L), bean.getBirth_date()); assertEquals(new BigDecimal("1234.56"), bean.getBalance()); }
Example #13
Source File: AbstractRowMapperTests.java From effectivejava with Apache License 2.0 | 4 votes |
protected void verifyConcretePerson(ConcretePerson bean) throws Exception { assertEquals("Bubba", bean.getName()); assertEquals(22L, bean.getAge()); assertEquals(new java.util.Date(1221222L), bean.getBirth_date()); assertEquals(new BigDecimal("1234.56"), bean.getBalance()); }