Uses of Class
cdx.scorebot.net.TestSuite

Packages that use TestSuite
cdx.scorebot.app.auditor Contains classes related to the Auditor. 
cdx.scorebot.app.configurer Contains classes related to the Configurer. 
cdx.scorebot.app.reporter Contains classes related to the Reporter. 
cdx.scorebot.app.tester Contains classeses related to the Tester. 
cdx.scorebot.net Implementation of tests for various services and the framework which configures and executes those tests. 
cdx.scorebot.net.tests Individual test implementations and the generic test framework; subpackages may have protected helper classes. 
cdx.scorebot.scoring The framework for scoring test results. 
cdx.scorebot.scoring.logic Contains the data structures used to hold and process the information parsed by the Scoring Logic lexical analyzer. 
 

Uses of TestSuite in cdx.scorebot.app.auditor
 

Methods in cdx.scorebot.app.auditor with parameters of type TestSuite
 boolean Filterer.filterSuite(TestSuite ts)
           
 

Uses of TestSuite in cdx.scorebot.app.configurer
 

Methods in cdx.scorebot.app.configurer that return TestSuite
 TestSuite TestItemNameTranslator.getSuite()
          gets the TestSuite whose TestItem's are checked to ensure no duplicate names occur
 

Methods in cdx.scorebot.app.configurer with parameters of type TestSuite
 void TestItemNameTranslator.setSuite(TestSuite suite)
          sets the TestSuite whose TestItem's are checked to ensure no duplicate names occur
 

Constructors in cdx.scorebot.app.configurer with parameters of type TestSuite
AddTestItemDialog(java.awt.Frame parent, boolean modal, TestSuite suite, TestItem[] x)
          Creates new form AddTestItemDialog
 

Uses of TestSuite in cdx.scorebot.app.reporter
 

Fields in cdx.scorebot.app.reporter with type parameters of type TestSuite
 java.util.HashMap<Service,java.util.Vector<TestSuite>> TeamScoringInfo.assocTS
           
 java.util.Vector<TestSuite> TeamScoringInfo.suites
          all suites (from ntp)
 

Methods in cdx.scorebot.app.reporter that return TestSuite
protected  TestSuite TeamScoringInfo.getTSfromTI(TestItem ti)
          find the suite a test item belongs to
protected  TestSuite TeamScoringInfo.getTSfromTSE(TestScoreEvent e)
           
 

Methods in cdx.scorebot.app.reporter with parameters of type TestSuite
protected  java.lang.Integer TeamScoringInfo.getIndex(TestSuite ts)
           
 java.lang.String CompleteScoringStats.subTestSuiteInfo(java.lang.String page, TestSuite ts)
          substitute in Test information
 

Uses of TestSuite in cdx.scorebot.app.tester
 

Methods in cdx.scorebot.app.tester that return types with arguments of type TestSuite
 java.util.Vector<TestSuite> ManualScheduler.getTestSuites()
          gets the test suites which contain tests which can be manually run
 

Uses of TestSuite in cdx.scorebot.net
 

Methods in cdx.scorebot.net that return TestSuite
 TestSuite NetworkTestPackage.getTestSuite(int index)
          Gets the specified TestSuite
 

Methods in cdx.scorebot.net that return types with arguments of type TestSuite
 java.util.Vector<TestSuite> NetworkTestPackage.getTestSuites()
          gets the test suites being tested
 

Methods in cdx.scorebot.net with parameters of type TestSuite
 void NetworkTestPackage.addTestSuite(TestSuite ts)
          Adds a TestSuite to be tested.
 int TestSuite.compareTo(TestSuite anotherTestSuite)
          Compares the names of two test suites lexicographically, ignoring case considerations
 

Uses of TestSuite in cdx.scorebot.net.tests
 

Fields in cdx.scorebot.net.tests declared as TestSuite
static TestSuite AdminService.ADMIN_SUITE
          the only instance of a test suite with an admin service
 

Uses of TestSuite in cdx.scorebot.scoring
 

Methods in cdx.scorebot.scoring with parameters of type TestSuite
static void ScoringRule.checkCode(java.lang.String code, TestSuite ts)
          checks the specified code for compile-time errors
 void ScoringRule.checkCode(TestSuite ts)
          checks the code which describes this logic for compile-time errors
 java.util.Vector<TestScoreEvent> ScoringRule.executeLogic(TestSuite suite, TestEvent t)
          executes the scoring logic on the specified TestEvent and returns any resulting TestScoreEvents, or null if none was generated (this just passes the TestEvent to ScoringLogic's executeLogic method)
 void ScoringRule.prepareRule(TestSuite ts)
          Prepare this rule for execution -- determines what tests need to be tracked and builds the logic
 java.util.Vector<TestScoreEvent> ScoringRuleset.processTestEvent(TestSuite suite, TestEvent e)
          Give each rule a chance to process the TestEvent.
 void ScoringRule.setCode(java.lang.String code, TestSuite ts)
          sets the code which describes this logic
 

Uses of TestSuite in cdx.scorebot.scoring.logic
 

Methods in cdx.scorebot.scoring.logic with parameters of type TestSuite
static java.util.HashMap<java.lang.String,TestData> TestData.createTestDataHash(TestSuite ts)
          prepares test data from a TestSuite (returns null if ts is null)