Package t2

Examples of t2.Importer


    public void test_protectedT1SI()
    {
        testMethod( "protectedT1SI", new T1(), false, "protectedT1SI" );
        testMethod( "protectedT1SI", new T1(), true, "protectedT1SI" );
        testMethod( "protectedT1SI", new T2(), false, "protectedT1SI" );
        testMethod( "protectedT1SI", new T2(), true, "protectedT1SI" );
    }
View Full Code Here


    public void test_protectedT1SSI()
    {
        testMethod( "protectedT1SSI", new T1(), false, "protectedT1SSI" );
        testMethod( "protectedT1SSI", new T1(), true, "protectedT1SSI" );
        testMethod( "protectedT1SSI", new T2(), false, "protectedT1SSI" );
        testMethod( "protectedT1SSI", new T2(), true, "protectedT1SSI" );
    }
View Full Code Here

    public void test_publicT1()
    {
        testMethod( "publicT1", new T1(), false, null );
        testMethod( "publicT1", new T1(), true, null );
        testMethod( "publicT1", new T2(), false, null );
        testMethod( "publicT1", new T2(), true, null );
    }
View Full Code Here

    public void test_publicT1SR()
    {
        testMethod( "publicT1SR", new T1(), false, "publicT1SR" );
        testMethod( "publicT1SR", new T1(), true, "publicT1SR" );
        testMethod( "publicT1SR", new T2(), false, "publicT1SR" );
        testMethod( "publicT1SR", new T2(), true, "publicT1SR" );
    }
View Full Code Here

    public void test_publicT1SI()
    {
        testMethod( "publicT1SI", new T1(), false, "publicT1SI" );
        testMethod( "publicT1SI", new T1(), true, "publicT1SI" );
        testMethod( "publicT1SI", new T2(), false, "publicT1SI" );
        testMethod( "publicT1SI", new T2(), true, "publicT1SI" );
    }
View Full Code Here

    public void test_publicT1SIMap()
    {
        testMethod( "publicT1SIMap", new T1(), false, null );
        testMethod( "publicT1SIMap", new T1(), true, "publicT1SIMap" );
        testMethod( "publicT1SIMap", new T2(), false, null );
        testMethod( "publicT1SIMap", new T2(), true, "publicT1SIMap" );
    }
View Full Code Here

    public void test_publicT1SSI()
    {
        testMethod( "publicT1SSI", new T1(), false, "publicT1SSI" );
        testMethod( "publicT1SSI", new T1(), true, "publicT1SSI" );
        testMethod( "publicT1SSI", new T2(), false, "publicT1SSI" );
        testMethod( "publicT1SSI", new T2(), true, "publicT1SSI" );
    }
View Full Code Here

    public void test_publicT1SSIMap()
    {
        testMethod( "publicT1SSIMap", new T1(), false, null );
        testMethod( "publicT1SSIMap", new T1(), true, "publicT1SSIMap" );
        testMethod( "publicT1SSIMap", new T2(), false, null );
        testMethod( "publicT1SSIMap", new T2(), true, "publicT1SSIMap" );
    }
View Full Code Here

        // T1 should use its own public implementation
        testMethod( "suitable", new T1(), false, "suitableT1" );
        testMethod( "suitable", new T1(), true, "suitableT1" );

        // T2's private implementation is only visible for DS 1.1
        testMethod( "suitable", new T2(), false, null );
        testMethod( "suitable", new T2(), true, "suitableT2" );

        // T3 extends T2 and cannot see T2's private method
        testMethod( "suitable", new T3(), false, null );
        testMethod( "suitable", new T3(), true, null );
View Full Code Here

    public void test_Unexistent()
    {
        testMethod( "unexistent", new T1(), false, null );
        testMethod( "unexistent", new T1(), true, null );
        testMethod( "unexistent", new T2(), false, null );
        testMethod( "unexistent", new T2(), true, null );
        testMethod( "unexistent", new T3(), false, null );
        testMethod( "unexistent", new T3(), true, null );
    }
View Full Code Here

TOP

Related Classes of t2.Importer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.