Package test

Source Code of test.TestDefaultModel

package test;

import java.math.BigDecimal;
import java.util.Date;

import modelet.model.DefaultModel;

import org.junit.Test;

import test.entity.Book;
import util.ApplicationContextHelper;

public class TestDefaultModel {

  @Test
  public void testPersist() {
   
    Book book = new Book();
    book.setBookName("賈'伯'斯'傳");
    book.setCreateDate(new Date());
    book.setPrice(new BigDecimal("100"));
   
    DefaultModel model = ApplicationContextHelper.getBean("defaultModel");
    model.save(book);
  }
}
TOP

Related Classes of test.TestDefaultModel

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.