Package org.auraframework.def

Examples of org.auraframework.def.TestSuiteDef


        for (DefDescriptor<T> desc : descriptors) {
            Map<String, String> values = Maps.newHashMap();
            values.put("name", desc.getDescriptorName());

            try {
                TestSuiteDef suite = definitionService.getDefDescriptor(desc, "js", TestSuiteDef.class).getDef();
                if (suite.getTestCaseDefs().size() == 0) {
                    unused.put(desc, values);
                }
            } catch (Throwable t) {
                unused.put(desc, values);
            }
View Full Code Here


                values.put("support", def.getSupport().name());
            } catch (Throwable t) {
                values.put("support", "ERROR");
            }
            try {
                TestSuiteDef suite = definitionService.getDefDescriptor(desc, "js", TestSuiteDef.class).getDef();
                values.put("tests", "" + suite.getTestCaseDefs().size());
            } catch (Throwable t) {
                values.put("tests", "0");
            }
            components.add(values);
        }
View Full Code Here

TOP

Related Classes of org.auraframework.def.TestSuiteDef

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.