Package org.auraframework.def.RootDefinition

Examples of org.auraframework.def.RootDefinition.SupportLevel


        ProviderDef actual = buildDefinition().getProviderDef();
        assertNull(actual);
    }

    public void testGetSupportDefault() throws Exception {
        SupportLevel actual = buildDefinition().getSupport();
        assertEquals(SupportLevel.PROTO, actual);
    }
View Full Code Here


        assertEquals(SupportLevel.PROTO, actual);
    }

    public void testGetSupportProto() throws Exception {
        this.support = SupportLevel.PROTO;
        SupportLevel actual = buildDefinition().getSupport();
        assertEquals(this.support, actual);
    }
View Full Code Here

        assertEquals(this.support, actual);
    }

    public void testGetSupportBeta() throws Exception {
        this.support = SupportLevel.BETA;
        SupportLevel actual = buildDefinition().getSupport();
        assertEquals(this.support, actual);
    }
View Full Code Here

        assertEquals(this.support, actual);
    }

    public void testGetSupportDeprecated() throws Exception {
        this.support = SupportLevel.DEPRECATED;
        SupportLevel actual = buildDefinition().getSupport();
        assertEquals(this.support, actual);
    }
View Full Code Here

        assertEquals(this.support, actual);
    }

    public void testGetSupportGa() throws Exception {
        this.support = SupportLevel.GA;
        SupportLevel actual = buildDefinition().getSupport();
        assertEquals(this.support, actual);
    }
View Full Code Here

TOP

Related Classes of org.auraframework.def.RootDefinition.SupportLevel

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.