Tools
testtool.txt
Associated article: Examining Software Testing Tools
Tags: Tools
Published source code accompanying the article by David C. Crowther and Peter J. Clarke in which they examine class-based unit testing tools for Java and C#.
Examining Software Testing Tools
by David C. Crowther and Peter J. Clarke
Listing One
//Simple stack implementation - Java
public class Stack
{
protected static final int STACK_EMPTY = -1;
protected static final int STACK_MAX = 1000;
Object[] stackelements;
int topelement = STACK_...


