33343536373839
* * @return new RuleValidator-component */ public static RuleValidator createRuleValidator() { return new RuleValidator(); }
31323334353637383940
public class EMFTraceCoreFactoryTest extends EMFTraceBaseTest { @Test public void testCreateRuleValidator() { RuleValidator tmp = null; assertNull(tmp); tmp = EMFTraceCoreFactory.createRuleValidator(); assertNotNull(tmp); }