/* * $Header: $ * $Revision: $ * $Date: $ * * SimpleBusinessTest.java * * Aug 18, 2006 * * Copyright (c) 2006 ATA Inc. * 7337 West Washington Street * Indianapolis, IN 46231 * All rights reserved. * * This software is the confidential and proprietary information of ATA Inc. * and referenced as "Confidential Information". * * You shall not disclose such Confidential Information and shall use it only * in accordance with the terms of the license agreements set forth and entered * into with ATA, Inc. */ package org.codehaus.mojo; import junit.framework.TestCase; /** * Simple business test * @author Todd Nine * */ public class SimpleBusinessTest extends TestCase { /* * Test method for 'org.codehaus.mojo.SimpleBusiness.checkValues(SimpleBean)' * */ public void testCheckValues() { SimpleBean bean = new SimpleBean(); bean.setIntValue(-1); bean.setStringValue(""); SimpleBusiness business = new SimpleBusiness(); business.checkValues(bean); } }