Uses of Class
cdx.scorebot.net.tests.TestEvent

Packages that use TestEvent
cdx.scorebot.app.auditor Contains classes related to the Auditor. 
cdx.scorebot.app.reporter Contains classes related to the Reporter. 
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.net.tests.dns DNS tests 
cdx.scorebot.net.tests.email Email tests 
cdx.scorebot.net.tests.generic Tests which run on any Service 
cdx.scorebot.net.tests.jabber Jabber tests 
cdx.scorebot.net.tests.smb Samba tests 
cdx.scorebot.net.tests.webserver Webserver tests 
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 TestEvent in cdx.scorebot.app.auditor
 

Methods in cdx.scorebot.app.auditor with parameters of type TestEvent
 boolean Filterer.filterOption(TestEvent te, java.lang.String optionName)
           
 boolean Filterer.filterResult(TestEvent te, java.lang.String resultName)
           
 

Uses of TestEvent in cdx.scorebot.app.reporter
 

Fields in cdx.scorebot.app.reporter with type parameters of type TestEvent
 java.util.Vector<TestEvent> TeamScoringInfo.testEvents
          all test events in the order they occurred
 

Methods in cdx.scorebot.app.reporter with parameters of type TestEvent
protected  java.lang.Integer TeamScoringInfo.getIndex(TestEvent te)
           
 java.lang.String CompleteScoringStats.subTestEventInfo(java.lang.String page, TestEvent te, java.lang.Integer resultNum)
          substitute in Test Event information
 

Uses of TestEvent in cdx.scorebot.net
 

Methods in cdx.scorebot.net that return types with arguments of type TestEvent
 java.util.Vector<TestEvent> NetworkTestPackage.getTestEvents(java.lang.String inputPathRoot)
          gets the test events which have exist for the specified configuration
 

Uses of TestEvent in cdx.scorebot.net.tests
 

Methods in cdx.scorebot.net.tests that return TestEvent
 TestEvent Test.run(TestItem ti)
          wrapper for run(TestEvent): creates the TestEvent and ensures timestamping is done
 

Methods in cdx.scorebot.net.tests with parameters of type TestEvent
protected abstract  void Test.prepareDefaultResults(TestEvent results)
          give all results the test returns some default value
protected abstract  void Test.run(TestEvent result)
          run the test and put all results into the results TestEvent object
 

Uses of TestEvent in cdx.scorebot.net.tests.dns
 

Methods in cdx.scorebot.net.tests.dns with parameters of type TestEvent
protected  void ResolveIP.prepareDefaultResults(TestEvent results)
           
protected  void ResolveHostname.prepareDefaultResults(TestEvent results)
           
 void ResolveIP.run(TestEvent results)
          run the test and put all results into results
 void ResolveHostname.run(TestEvent results)
          run the test and put all results into results
 

Uses of TestEvent in cdx.scorebot.net.tests.email
 

Methods in cdx.scorebot.net.tests.email with parameters of type TestEvent
protected  void Sendmail.prepareDefaultResults(TestEvent results)
           
 void Sendmail.run(TestEvent results)
          run the test and put all results into results
 

Uses of TestEvent in cdx.scorebot.net.tests.generic
 

Methods in cdx.scorebot.net.tests.generic with parameters of type TestEvent
protected  void Ping.prepareDefaultResults(TestEvent results)
           
 void Ping.run(TestEvent results)
          run the test and put all results into results
 

Uses of TestEvent in cdx.scorebot.net.tests.jabber
 

Methods in cdx.scorebot.net.tests.jabber with parameters of type TestEvent
protected  void SendMessage.prepareDefaultResults(TestEvent results)
           
 void SendMessage.run(TestEvent results)
          run the test and put all results into results
 

Uses of TestEvent in cdx.scorebot.net.tests.smb
 

Methods in cdx.scorebot.net.tests.smb with parameters of type TestEvent
protected  void WriteFile.prepareDefaultResults(TestEvent results)
           
protected  void ReadFile.prepareDefaultResults(TestEvent results)
           
 void WriteFile.run(TestEvent results)
           
 void ReadFile.run(TestEvent results)
           
 

Uses of TestEvent in cdx.scorebot.net.tests.webserver
 

Methods in cdx.scorebot.net.tests.webserver with parameters of type TestEvent
protected  void FileIntegrityCheck.prepareDefaultResults(TestEvent results)
           
 void FileIntegrityCheck.run(TestEvent results)
           
 

Uses of TestEvent in cdx.scorebot.scoring
 

Methods in cdx.scorebot.scoring with parameters of type TestEvent
 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)
 int ScoringCompiler.processNextTestEvent(TestEvent evt)
          Process the next TestEvent (chronological order)
 java.util.Vector<TestScoreEvent> ScoringRuleset.processTestEvent(TestSuite suite, TestEvent e)
          Give each rule a chance to process the TestEvent.
 

Uses of TestEvent in cdx.scorebot.scoring.logic
 

Methods in cdx.scorebot.scoring.logic that return TestEvent
 TestEvent TestNumPair.getResult(int index)
          gets the specified result (0 = most recent)
 

Methods in cdx.scorebot.scoring.logic that return types with arguments of type TestEvent
 java.util.Vector<TestEvent> TestNumPair.getResults()
          gets the results this stores (index 0 = most recent)
 

Methods in cdx.scorebot.scoring.logic with parameters of type TestEvent
 boolean TestNumPair.trackResult(TestEvent e)
          adds the specified result to the TestEvents being tracked if the specified result came from the test item being tracked by this TestNumPair