Package org.auraframework.impl

Examples of org.auraframework.impl.FakeRegistry


            checkExceptionFull(e, InvalidDefinitionException.class, "Cannot declare an Event attribute as private");
        }
    }

    public void testValidateReferences() throws Exception {
        FakeRegistry fake = createFakeRegistry();
        EventDefImpl ed = vendor.makeEventDef();
        EventDefImpl extendsED = vendor.makeEventDef(vendor.getParentEventDefDescriptor(), null);
        fake.putDefinition(extendsED);
        ed.validateReferences();
    }
View Full Code Here


                    "Cannot declare an Interface attribute as private");
        }
    }

    public void testValidateReferences() throws Exception {
        FakeRegistry fake = createFakeRegistry();
        InterfaceDef ed = vendor.makeInterfaceDef();
        InterfaceDef extendsID = vendor.makeInterfaceDef(vendor.getParentInterfaceDefDescriptor());
        fake.putDefinition(extendsID);
        fake.putDefinition(vendor.makeEventDef());
        ed.validateReferences();
    }
View Full Code Here

            // expected
        }
    }

    public void testValidateReferences() throws Exception {
        FakeRegistry fake = createFakeRegistry();
        fake.putDefinition(vendor.makeEventDef());
        RegisterEventDefImpl red = vendor.makeRegisterEventDef();
        red.validateReferences();
    }
View Full Code Here

TOP

Related Classes of org.auraframework.impl.FakeRegistry

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.