Package test.util

Source Code of test.util.RecyclingPileTest

package test.util;
import net.sf.nebulacards.util.RecyclingPile;
import net.sf.nebulacards.main.*;
import junit.framework.*;
import Utility;

public class RecyclingPileTest
  extends TestCase
{
  public RecyclingPileTest(String s) { super(s); }

  public void testRemove()
  {
    RecyclingPile rp = new RecyclingPile();
    rp.addAll(PileOfCards.getStandardDeck());
    int size = rp.size();
    for (int i = 0; i < size - 1; i++)
    {
      rp.recycle(rp.takeTop());
    }
    assertEquals(1, rp.size())// check that the remove worked
    // this remove operation should cause the pile to be regenerated.
    rp.takeTop();
    assertEquals(size - 1, rp.size());
    // go through all the cards again, to make sure that nothing
    // funny happens on the second regeneration (e.g. double-size pile!).
    for (int i = 0; i < size - 1; i++)
    {
      rp.recycle(rp.takeTop());
    }
    assertEquals(size - 2, rp.size())// check that the remove worked
  }
}
TOP

Related Classes of test.util.RecyclingPileTest

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.