Example usage for org.springframework.jdbc.core.test ConcretePerson getBirth_date

List of usage examples for org.springframework.jdbc.core.test ConcretePerson getBirth_date

Introduction

In this page you can find the example usage for org.springframework.jdbc.core.test ConcretePerson getBirth_date.

Prototype

public Date getBirth_date() 

Source Link

Usage

From source file:org.springframework.jdbc.core.AbstractRowMapperTests.java

protected void verifyConcretePerson(ConcretePerson bean) {
    verify();/*from w  w  w .  j a v a2 s  .  c  om*/
    assertEquals("Bubba", bean.getName());
    assertEquals(22L, bean.getAge());
    assertEquals(new java.util.Date(1221222L), bean.getBirth_date());
    assertEquals(new BigDecimal("1234.56"), bean.getBalance());
}