Demonstration of Design by Contract (DBC) combined with white-box unit testing : 单元测试 « 开发相关类 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 开发相关类 » 单元测试屏幕截图 
Demonstration of Design by Contract (DBC) combined with white-box unit testing
Demonstration of Design by Contract (DBC) combined with white-box unit testing


// : c15:JavaQueue.java
// Demonstration of Design by Contract (DBC) combined
// with white-box unit testing.
// {Depends: junit.jar}
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.

import junit.framework.*;
import java.util.*;

public class JavaQueue {
  private Object[] data;

  private int in = 0// Next available storage space
      out = 0// Next gettable object

  // Has it wrapped around the circular queue?
  private boolean wrapped = false;

  public static class QueueException extends RuntimeException {
    public QueueException(String why) {
      super(why);
    }
  }

public JavaQueue(int size) {
    data = new Object[size];
    assert invariant()// Must be true after construction
  }  public boolean empty() {
    return !wrapped && in == out;
  }

  public boolean full() {
    return wrapped && in == out;
  }

public void put(Object item) {
    precondition(item != null, "put() null item");
    precondition(!full()"put() into full Queue");
    assert invariant();
    data[in++= item;
    if(in >= data.length) {
      in = 0;
      wrapped = true;
    }
    assert invariant();
  }public Object get() {
    precondition(!empty()"get() from empty Queue");
    assert invariant();
    Object returnVal = data[out];
    data[outnull;
    out++;
    if(out >= data.length) {
      out = 0;
      wrapped = false;
    }
    assert postcondition(
      returnVal != null, "Null item in Queue");
    assert invariant();
    return returnVal;
  }  // Design-by-contract support methods:
  private static void precondition(boolean cond, String msg) {
    if (!cond)
      throw new QueueException(msg);
  }

  private static boolean postcondition(boolean cond, String msg) {
    if (!cond)
      throw new QueueException(msg);
    return true;
  }

  private boolean invariant() {
    // Guarantee that no null values are in the
    // region of 'data' that holds objects:
    for (int i = out; i != in; i = (i + 1% data.length)
      if (data[i== null)
        throw new QueueException("null in queue");
    // Guarantee that only null values are outside the
    // region of 'data' that holds objects:
    if (full())
      return true;
    for (int i = in; i != out; i = (i + 1% data.length)
      if (data[i!= null)
        throw new QueueException("non-null outside of queue range: "
            + dump());
    return true;
  }

  private String dump() {
    return "in = " + in + ", out = " + out + ", full() = " + full()
        ", empty() = " + empty() ", queue = " + Arrays.asList(data);
  }

  // JUnit testing.
  // As an inner class, this has access to privates:
  public static class WhiteBoxTest extends TestCase {
    private JavaQueue queue = new JavaQueue(10);

    private int i = 0;

    public WhiteBoxTest(String name) {
      super(name);
      while (i < 5)
        // Preload with some data
        queue.put("" + i++);
    }

    // Support methods:
    private void showFullness() {
      assertTrue(queue.full());
      assertFalse(queue.empty());
      // Dump is private, white-box testing allows access:
      System.out.println(queue.dump());
    }

    private void showEmptiness() {
      assertFalse(queue.full());
      assertTrue(queue.empty());
      System.out.println(queue.dump());
    }

    public void testFull() {
      System.out.println("testFull");
      System.out.println(queue.dump());
      System.out.println(queue.get());
      System.out.println(queue.get());
      while (!queue.full())
        queue.put("" + i++);
      String msg = "";
      try {
        queue.put("");
      catch (QueueException e) {
        msg = e.getMessage();
        System.out.println(msg);
      }
      assertEquals(msg, "put() into full Queue");
      showFullness();
    }

    public void testEmpty() {
      System.out.println("testEmpty");
      while (!queue.empty())
        System.out.println(queue.get());
      String msg = "";
      try {
        queue.get();
      catch (QueueException e) {
        msg = e.getMessage();
        System.out.println(msg);
      }
      assertEquals(msg, "get() from empty Queue");
      showEmptiness();
    }

    public void testNullPut() {
      System.out.println("testNullPut");
      String msg = "";
      try {
        queue.put(null);
      catch (QueueException e) {
        msg = e.getMessage();
        System.out.println(msg);
      }
      assertEquals(msg, "put() null item");
    }

    public void testCircularity() {
      System.out.println("testCircularity");
      while (!queue.full())
        queue.put("" + i++);
      showFullness();
      // White-box testing accesses private field:
      assertTrue(queue.wrapped);
      while (!queue.empty())
        System.out.println(queue.get());
      showEmptiness();
      while (!queue.full())
        queue.put("" + i++);
      showFullness();
      while (!queue.empty())
        System.out.println(queue.get());
      showEmptiness();
    }
  }

  public static void main(String[] args) {
    junit.textui.TestRunner.run(JavaQueue.WhiteBoxTest.class);
  }
///:~


           
       
Related examples in the same category
1. JUnit测试失败信息
2. JUnit assertEquals :浮点测试
3. 相等断言: 整数型变量
4. 相等断言:长整型变量
5. JUnit assertEquals With Message
6. JUnit assertTrue
7. JUnit assertTrue: ObjectArray
8. Before注释
9. JUnit BeforeClass
10. JUnit扩展测试用例
11. JUnit忽略
12. 简单测试与JUnit
13. JUnit测试用例的预期异常
14. JUnit测试设置
15. JUnit测试的ArrayList的简单使用JUnit测试的ArrayList的简单使用
16. 调试窗口调试窗口
17. 错误处理错误处理
18. 重定向或重新分配一些标准描述
19. 调试工具
20. 测试类测试类
21. 简单实用的测试程序简单实用的测试程序
22. 断言调试工具
23. 简单调试简单调试
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.