WEST VIRGINIA UNIVERSITY

COLLEGE OF ENGINEERING

DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING

CPE 391/CS 210 COMPUTER ENGINEERING LABORATORY ON OBJECT-ORIENTED PROGRAMMING IN C++

LAB #10 PROJECT, PHASE 2

Objective:

Implementation and Testing: Implement the classes designed in lab 9 incrementally and test the implementation using unit testing and scenario-based testing (using the scenarios of define, check, show, and simulate discussed in class).

Procedure:

  1. Implement and test the methods in the classes specified in lab 9 needed to define a queuing network (i.e., class members needed to create nodes and links and add them to a network). Test classes as units using unit testing when possible then use scenario testing to test the define network scenario.
  2. Implement and test the methods in the classes needed to check a queuing network (i.e., class members needed to check the nodes and links of a network). Test classes as units using unit testing when possible then use scenario testing to test the check network scenario.
  3. Implement and test the methods in the classes needed to show a queuing network configuration(i.e., class members needed to show the nodes and links of a network). Test classes as units using unit testing when possible then use scenario testing to test the show network scenario.
  4. Implement and test the methods in the classes needed to simulate a queuing network (i.e., class members needed to simulate the nodes and links of a network). Test classes as units using unit testing when possible then use scenario testing to test the simulate network scenario.

Previous
Home