package com.jbidwatcher.auction; import junit.framework.Test; import junit.framework.TestSuite; import junit.framework.TestCase; /** * AuctionInfo Tester. * * @author <Authors name> * @since <pre>09/27/2006</pre> * @version 1.0 */ public class AuctionInfoTest extends TestCase { //TODO: Implement tests... public AuctionInfoTest(String name) { super(name); } public void setUp() throws Exception { super.setUp(); } public void tearDown() throws Exception { super.tearDown(); } public void testGetTags() throws Exception { } public void testSetGetThumbnail() throws Exception { } public void testSetGetRealContent() throws Exception { } public void testSetRealContent1() throws Exception { } public void testSetGetContent() throws Exception { } public void testSetGetIdentifier() throws Exception { } public void testGetCurBid() throws Exception { } public void testGetUSCurBid() throws Exception { } public void testGetMinBid() throws Exception { } public void testGetShipping() throws Exception { } public void testGetInsurance() throws Exception { } public void testGetInsuranceOptional() throws Exception { } public void testGetBuyNow() throws Exception { } public void testGetQuantity() throws Exception { } public void testGetNumBidders() throws Exception { } public void testGetSeller() throws Exception { } public void testGetHighBidder() throws Exception { } public void testGetHighBidderEmail() throws Exception { } public void testGetTitle() throws Exception { } public void testGetStartDate() throws Exception { } public void testGetEndDate() throws Exception { } public void testGetItemLocation() throws Exception { } public void testGetPositiveFeedbackPercentage() throws Exception { } public void testGetFeedbackScore() throws Exception { } public void testGetSiteThumbnail() throws Exception { } public void testGetAlternateSiteThumbnail() throws Exception { } public static Test suite() { return new TestSuite(AuctionInfoTest.class); } }