All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface TET.ICManager

public interface ICManager
An object implementing the ICManager interface may interact with the the test execution loop supplied by TET.TestCase.


Method Index

 o max_ic()
Return the last invocable component.
 o min_ic()
Return the first invocable component.
 o run_cleanup(TestSession)
Run the cleanup routine for this test case.
 o run_ic(TestSession, int)
Run an invocable component.
 o run_startup(TestSession)
Run the startup routine for this test case.
 o valid_ic(int)
Answer whether an invocable component is part of the test case.

Methods

 o min_ic
 public abstract int min_ic()
Return the first invocable component.

 o max_ic
 public abstract int max_ic()
Return the last invocable component.

 o valid_ic
 public abstract boolean valid_ic(int ic)
Answer whether an invocable component is part of the test case.

Parameters:
ic - the invocable component
 o run_ic
 public abstract void run_ic(TestSession ts,
                             int ic)
Run an invocable component.

Parameters:
ts - the TET.TestSession to use
ic - the invocable component to run
 o run_startup
 public abstract void run_startup(TestSession ts)
Run the startup routine for this test case.

Parameters:
ts - the TestSession to use
 o run_cleanup
 public abstract void run_cleanup(TestSession ts)
Run the cleanup routine for this test case.

Parameters:
ts - the TestSession to use

All Packages  Class Hierarchy  This Package  Previous  Next  Index