CStack

A Stack made with the LinkedList class from Java Collections Framework

I have created a class called CStack which implements a stack using the LinkedList class from Java's standard collections framework.

CStackTest is an application which tests the CStack class. The CStack class implements the Stack interface. To tests use the Tester class which tests its two arguments for equality and prints out a message for each test that fails as well as keeping track of the number of failing tests.

Files