Interface TestCase

All Known Implementing Classes:
WebTestCase

public interface TestCase
This interface defines a base set of methods required used by a TS test case.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Executes the test case.
    Returns the name of this test case.
    void
    Sets the name of the test case.
  • Method Details

    • execute

      void execute() throws Exception
      Executes the test case.
      Throws:
      Exception - if the test fails for any reason.
    • setName

      void setName(String name)
      Sets the name of the test case.
      Parameters:
      name - of the test case
    • getName

      String getName()
      Returns the name of this test case.
      Returns:
      test case name