Example usage for org.springframework.jdbc.core.test SpacePerson getLastName

List of usage examples for org.springframework.jdbc.core.test SpacePerson getLastName

Introduction

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

Prototype

public String getLastName() 

Source Link

Usage

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

protected void verifySpacePerson(SpacePerson bean) {
    conControl3.verify();//from  w  ww.j a  v  a  2  s  .c o  m
    rsControl3.verify();
    rsmdControl3.verify();
    stmtControl3.verify();
    assertEquals("Gagarin", bean.getLastName());
    assertEquals(22L, bean.getAge());
    assertEquals(new java.util.Date(1221222L), bean.getBirthDate());
    assertEquals(new BigDecimal("1234.56"), bean.getBalance());
}