kawigi.problem
Class Test

java.lang.Object
  extended by kawigi.problem.Test

public class Test
extends java.lang.Object

Represents a test case. Normally when one writes a class called "Test", it's not meant to be in the final code base, but this case is an exception :-)


Constructor Summary
Test(java.lang.String answer, java.lang.String[] parameters)
          Constructs a new Test with the given answer and parameters.
 
Method Summary
 java.lang.String getAnswer()
          Returns the intended output for this test.
 java.lang.String[] getParameters()
          Returns the input parameters for this test.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Test

public Test(java.lang.String answer,
            java.lang.String[] parameters)
Constructs a new Test with the given answer and parameters.

Method Detail

getAnswer

public java.lang.String getAnswer()
Returns the intended output for this test.


getParameters

public java.lang.String[] getParameters()
Returns the input parameters for this test.