Package org.apache.felix.scr.impl.manager.components

Examples of org.apache.felix.scr.impl.manager.components.T1


    }


    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


    public void test_suitable()
    {
        // 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" );
View Full Code Here

    }


    public void test_Unexistent()
    {
        testMethod( "unexistent", new T1(), DSVersion.DS10, null );
        testMethod( "unexistent", new T1(), DSVersion.DS11, null );
        testMethod( "unexistent", new T2(), DSVersion.DS10, null );
        testMethod( "unexistent", new T2(), DSVersion.DS11, null );
        testMethod( "unexistent", new T3(), DSVersion.DS10, null );
        testMethod( "unexistent", new T3(), DSVersion.DS11, null );
    }
View Full Code Here

    }


    public void test_privateT1()
    {
        testMethod( "privateT1", new T1(), DSVersion.DS10, null );
        testMethod( "privateT1", new T1(), DSVersion.DS11, null );
        testMethod( "privateT1", new T2(), DSVersion.DS10, null );
        testMethod( "privateT1", new T2(), DSVersion.DS11, null );
        testMethod( "privateT1", new T3(), DSVersion.DS10, null );
        testMethod( "privateT1", new T3(), DSVersion.DS11, null );
    }
View Full Code Here

    }


    public void test_privateT1SR()
    {
        testMethod( "privateT1SR", new T1(), DSVersion.DS10, null );
        testMethod( "privateT1SR", new T1(), DSVersion.DS11, "privateT1SR" );
        testMethod( "privateT1SR", new T2(), DSVersion.DS10, null );
        testMethod( "privateT1SR", new T2(), DSVersion.DS11, null );
    }
View Full Code Here

    }


    public void test_privateT1SI()
    {
        testMethod( "privateT1SI", new T1(), DSVersion.DS10, null );
        testMethod( "privateT1SI", new T1(), DSVersion.DS11, "privateT1SI" );
        testMethod( "privateT1SI", new T2(), DSVersion.DS10, null );
        testMethod( "privateT1SI", new T2(), DSVersion.DS11, null );
    }
View Full Code Here

TOP

Related Classes of org.apache.felix.scr.impl.manager.components.T1

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.