/* * Copyright 2004-2015 the Seasar Foundation and the Others. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.seasar.extension.unit; import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; import junit.framework.TestCase; import org.seasar.extension.dataset.DataRow; import org.seasar.extension.dataset.DataSet; import org.seasar.extension.dataset.DataTable; /** * @author higa * */ public class BeanListReaderTest extends TestCase { /** * @throws Exception */ public void testRead() throws Exception { Employee emp = new Employee(); emp.setEmpno(7788); emp.setEname("SCOTT"); emp.setDeptno(10); emp.setDname("HOGE"); List list = new ArrayList(); list.add(emp); BeanListReader reader = new BeanListReader(list); DataSet ds = reader.read(); DataTable table = ds.getTable(0); DataRow row = table.getRow(0); assertEquals("1", new BigDecimal(7788), row.getValue("empno")); assertEquals("2", "SCOTT", row.getValue("ename")); assertEquals("3", new BigDecimal(10), row.getValue("deptno")); assertEquals("4", "HOGE", row.getValue("dname")); } }