⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testcompositeshape.java

📁 著名的uncle Bob的Agile software development的代码
💻 JAVA
字号:
import junit.framework.TestCase;
import junit.swingui.TestRunner;

public class TestCompositeShape extends TestCase
{
  public static void main(String[] args)
  {
    TestRunner.main(new String[]{"TestCompositeShape"});
  }

  public TestCompositeShape(String name)
  {
    super(name);
  }

  private int drawCount = 0;

  public void testNullComposite() throws Exception
  {
    CompositeShape s = new CompositeShape();
    s.draw();
    assertEquals(0, drawCount);
  }

  public void testCompositeWithOneShape() throws Exception
  {
    CompositeShape s = new CompositeShape();
    s.add(new TestShape());
    s.draw();
    assertEquals(1, drawCount);
  }

  public void testCompositeWithNShapes() throws Exception
  {
    CompositeShape s = new CompositeShape();
    for (int i = 0; i < 100; i++)
    {
      s.add(new TestShape());
    }
    s.draw();
    assertEquals(100, drawCount);
  }

  private class TestShape implements Shape
  {
    public void draw()
    {
      drawCount++;
    }
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -