Uses of Interface
org.w3c.mwi.mobileok.basic.TestImplementation

Uses of TestImplementation in org.w3c.mwi.mobileok.basic
 

Classes in org.w3c.mwi.mobileok.basic that implement TestImplementation
(package private)  class AbstractCSSTestImplementation
          Abstract implementation of AbstractTestImplementation that provides helper methods to parse the CSS styles (whether inline, embedded or external) defined in the Web resource under test.
(package private)  class AbstractTestImplementation
          Abstract implementation of the TestImplementation interface for test implementations that return the outcome of the test as a DOM tree.
(package private)  class AbstractXSLTTestImplementation
          Abstract implementation of AbstractTestImplementation for tests that apply an XSL stylesheets to the DOM moki representation of the Web resource returned by PreprocessorResults.getMokiDocument().
(package private)  class AutoRefreshTest
          Implements the AUTO_REFRESH and REDIRECTION mobileOK test.
 class CachingTest
          Implements the CACHING mobileOK test.
(package private)  class CharacterEncodingSupportTest
          Implements the CHARACTER_ENCODING_SUPPORT and CHARACTER_ENCODING_USE mobileOK test.
(package private)  class ContentFormatSupportTest
          Implements the CONTENT_FORMAT_SUPPORT mobileOK test.
 class DefaultInputModeTest
          Implements the DEFAULT_INPUT_MODE mobileOK test.
(package private)  class ExternalResourcesTest
          Implements the EXTERNAL_RESOURCES mobileOK test.
(package private)  class GraphicsForSpacingTest
          Implements the GRAPHICS_FOR_SPACING mobileOK test.
(package private)  class ImageMapsTest
          Implements the IMAGE_MAPS mobileOK test.
(package private)  class ImagesSpecifySizeTest
          Implements the IMAGES_SPECIFY_SIZE mobileOK test.
(package private)  class LinkTargetFormatTest
          Implements the LINK_TARGET_FORMAT mobileOK test.
(package private)  class MainDocumentTest
          Implements side tests performed on the Web resource under test, and in particular the tests on the meta element with an http_equiv attribute as defined in Meta http-equiv Elements in the W3C mobileOK Basic Tests 1.0 standard.
(package private)  class MeasuresTest
          Implements the mobileOK MEASURES test.
(package private)  class MinimizeTest
          Implements the MINIMIZE mobileOK test.
(package private)  class NoFramesTest
          Implements the NO_FRAMES mobileOK test.
(package private)  class NonTextAlternativesTest
          Implements the NON_TEXT_ALTERNATIVES mobileOK test.
(package private)  class ObjectsOrScriptTest
          Implements the OBJECTS_OR_SCRIPT mobileOK test.
(package private)  class PageSizeLimitTest
          Implements the PAGE_SIZE_LIMIT mobileOK test.
(package private)  class PageTitleTest
          Implements the PAGE_TITLE mobileOK test.
(package private)  class PopUpsTest
          Implements the POP_UPS mobileOK test.
(package private)  class ProvideDefaultsTest
          Implements the PROVIDE_DEFAULTS mobileOK test.
(package private)  class StyleSheetsSupportTest
          Implements the STYLE_SHEETS_SUPPORT mobileOK test.
 class StyleSheetsUseTest
          Implements the STYLE_SHEETS_USE mobileOK test.
(package private)  class TablesAlternativesTest
          Implements the TABLES_ALTERNATIVES mobileOK test.
(package private)  class TablesLayoutTest
          Implements the TABLES_LAYOUT mobileOK test.
(package private)  class TablesNestedTest
          Implements the TABLES_NESTED mobileOK test.
 

Fields in org.w3c.mwi.mobileok.basic with type parameters of type TestImplementation
private static java.util.Map<TestType,TestImplementation> TestType.implementations
          Mapping table between the names of the test and instances of the classes that implement them.
private  java.util.List<TestImplementation> TesterConfiguration.tests
          List of tests that need to be applied to the moki representation.
 

Methods in org.w3c.mwi.mobileok.basic that return TestImplementation
(package private) static TestImplementation TestType.getImplementation(TestType type)
           
 

Methods in org.w3c.mwi.mobileok.basic that return types with arguments of type TestImplementation
static java.util.List<TestImplementation> MobileOKConfiguration.getMobileOKTests()
          Returns the list of mobileOK tests.
 java.util.List<TestImplementation> TesterConfiguration.getTests()
          Returns the list of tests that should be run on the moki representation of the resource under test.
 

Method parameters in org.w3c.mwi.mobileok.basic with type arguments of type TestImplementation
static TesterConfiguration MobileOKConfiguration.getTesterConfiguration(java.util.List<TestImplementation> tests)
          Returns a mobileOK tester configuration that applies the given list of tests.
static TesterConfiguration MobileOKConfiguration.getTesterConfiguration(java.util.List<TestImplementation> tests, java.util.Map<java.lang.String,java.lang.Object> settings)
          Returns a tester configuration that uses mobileOK settings, possibly amended by the given list of additional settings, and that runs on the given list of tests.
 TestResults Tester.runTests(java.util.List<TestImplementation> tests)
          Runs a precise list of tests on the URI bound to this instance.
 

Constructor parameters in org.w3c.mwi.mobileok.basic with type arguments of type TestImplementation
TesterConfiguration(ResourceRetrieverFactory resourceRetrieverFactory, DecodedContentFactory decodedContentFactory, java.util.List<ResourceExtractor> extractors, java.util.List<TestImplementation> tests, java.util.Map<java.lang.String,java.lang.Object> settings)
          Creates a new instance of a tester configuration.