asgaard.utils.test
Interface TestIt

All Known Implementing Classes:
Test

public abstract interface TestIt

Two things have to be done: Collecting all testscripts from the implementing class and all it's owned other classes (e.g. superclasses) and starting the test.


Method Summary
 java.lang.Object[][] getTestScript()
          Shall Returns the Test-Script for this Class and all the Testscripts from other classes.
 boolean testIt(java.lang.Object local_handle)
          calls the Test - Object.
 

Method Detail

getTestScript

public java.lang.Object[][] getTestScript()
Shall Returns the Test-Script for this Class and all the Testscripts from other classes.

e.g. return TESTSCRIPT


testIt

public boolean testIt(java.lang.Object local_handle)
calls the Test - Object.

e.g. return Test.testIt(this.getClass().getName(), getTestScript());