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

Packages that use Test
cdx.scorebot.app.reporter Contains classes related to the Reporter. 
cdx.scorebot.app.util Contains utility classes whose primary purpose is to maintain information about services, tests, test options, and test returns for other GUIs. 
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 
 

Uses of Test in cdx.scorebot.app.reporter
 

Fields in cdx.scorebot.app.reporter with type parameters of type Test
 java.util.Vector<Test> TeamScoringInfo.tests
          all tests
 

Methods in cdx.scorebot.app.reporter with parameters of type Test
protected  java.lang.Integer TeamScoringInfo.getIndex(Test t)
           
protected  int TeamScoringInfo.getTestIndex(Test t)
           
 java.lang.String CompleteScoringStats.subTestInfo(java.lang.String page, Test t)
          substitute in Test information
 

Uses of Test in cdx.scorebot.app.util
 

Methods in cdx.scorebot.app.util that return Test
 Test ScorebotInfo.getTestByName(Service s, java.lang.String name)
          get test by a string rep of it's name returns null if the name isn't found
 Test TestInfo.getTestFactory()
          gets the test
 

Methods in cdx.scorebot.app.util that return types with arguments of type Test
 java.util.Vector<Test> ScorebotInfo.getAllTestFactories()
          gets all known tests
 java.util.Vector<Test> ScorebotInfo.getTestFactories(Service s)
          gets all known tests (factory instantiations) for a particular service (includes those for a generic service)
 java.util.Vector<Test> ScorebotInfo.getTestFactories(Service s, boolean getGenericTestsToo)
          gets all known tests (factory instantiations) for a particular service
 

Methods in cdx.scorebot.app.util with parameters of type Test
 java.lang.String ScorebotInfo.getOptionDescription(Test t, java.lang.String optionName)
          gets the description of an option (returns "unknown option" if the requested one isn't found)
 java.lang.String ScorebotInfo.getOptionIdentifier(Test t, java.lang.String optionName)
          gets the identifier of an option (returns "unknown_option" if the requested one isn't found)
 LiteralType ScorebotInfo.getOptionType(Test t, java.lang.String optionName)
          gets the type of an option (returns null if the requested one isn't found)
 java.lang.String ScorebotInfo.getResultDescription(Test t, java.lang.String resultName)
          gets the description of an result (returns "unknown result" if the requested one isn't found)
 java.lang.String ScorebotInfo.getResultIdentifier(Test t, java.lang.String resultName)
          gets the identifier of an result (returns unknown_result if the requested one isn't found)
 LiteralType ScorebotInfo.getResultType(Test t, java.lang.String resultName)
          gets the type of an result (returns null if the requested one isn't found)
 java.lang.String ScorebotInfo.getTestDescription(Test t)
          gets the description of this test (returns "unknown test" if the requested one isn't found)
 java.lang.String ScorebotInfo.getTestName(Test t)
          gets the name of a test (returns "unknown test" if the requested one isn't found)
 java.util.Vector<OptionInfo> ScorebotInfo.getTestOptionsInfo(Test t)
          gets info about the options in this test (returns an empty vector if the requested one isn't found)
 java.util.Vector<ResultInfo> ScorebotInfo.getTestResultsInfo(Test t)
          gets info about the results returned by this test (returns an empty vector if the requested one isn't found)
 void TestInfo.setTestFactory(Test test)
          sets the test
 

Uses of Test in cdx.scorebot.net.tests
 

Methods in cdx.scorebot.net.tests that return Test
 Test TestItem.getConfiguredTest()
          Gets a configured copy of the Test type in this TestItem
 Test TestItem.getTestType()
          gets the test this item configures (used to instantiate configured copies of this test)
abstract  Test Test.instantiate(java.util.HashMap<java.lang.String,ConfigOption> config)
          Instantiates a test of this type with the specified config (verify that it includes all needed configuration options).
 

Methods in cdx.scorebot.net.tests with parameters of type Test
 boolean Test.equals(Test t)
           
 

Constructors in cdx.scorebot.net.tests with parameters of type Test
TestItem(Test testType)
          Creates a TestItem for the specified test with its default option values.
TestItem(Test testType, Configuration config)
          Creates a TestItem for the specified test with its default option values.
 

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

Subclasses of Test in cdx.scorebot.net.tests.dns
 class ResolveHostname
          tries to resolve a hostname into an IP address
 class ResolveIP
          tries to resolve an IP address into a hostname
 

Methods in cdx.scorebot.net.tests.dns that return Test
 Test ResolveIP.instantiate(java.util.HashMap<java.lang.String,ConfigOption> config)
          Instantiates a test of this type with the specified config (verify that it includes all needed configuration options).
 Test ResolveHostname.instantiate(java.util.HashMap<java.lang.String,ConfigOption> config)
          Instantiates a test of this type with the specified config (verify that it includes all needed configuration options).
 

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

Subclasses of Test in cdx.scorebot.net.tests.email
 class Sendmail
          tries to send an email
 

Methods in cdx.scorebot.net.tests.email that return Test
 Test Sendmail.instantiate(java.util.HashMap<java.lang.String,ConfigOption> config)
          Instantiates a test of this type with the specified config (verify that it includes all needed configuration options).
 

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

Subclasses of Test in cdx.scorebot.net.tests.generic
 class Ping
          tries to ping the service (ICMP Echo Request)
 

Methods in cdx.scorebot.net.tests.generic that return Test
 Test Ping.instantiate(java.util.HashMap<java.lang.String,ConfigOption> config)
          Instantiates a test of this type with the specified config (verify that it includes all needed configuration options).
 

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

Subclasses of Test in cdx.scorebot.net.tests.jabber
 class SendMessage
          tries to send a message to a Jabber client
 

Methods in cdx.scorebot.net.tests.jabber that return Test
 Test SendMessage.instantiate(java.util.HashMap<java.lang.String,ConfigOption> config)
          Instantiates a test of this type with the specified config (verify that it includes all needed configuration options).
 

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

Subclasses of Test in cdx.scorebot.net.tests.smb
 class ReadFile
          tries to read a file from the share
 class WriteFile
          tries to write a file to the share
 

Methods in cdx.scorebot.net.tests.smb that return Test
 Test WriteFile.instantiate(java.util.HashMap<java.lang.String,ConfigOption> config)
           
 Test ReadFile.instantiate(java.util.HashMap<java.lang.String,ConfigOption> config)
           
 

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

Subclasses of Test in cdx.scorebot.net.tests.webserver
 class FileIntegrityCheck
          verifies the contents in a file from the webserver is as expected
 

Methods in cdx.scorebot.net.tests.webserver that return Test
 Test FileIntegrityCheck.instantiate(java.util.HashMap<java.lang.String,ConfigOption> config)