[jboss-svn-commits] JBL Code SVN: r11960 - labs/jbossrules/trunk/experimental/drools-testing/src/org/drools/testing/core/engine.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Sat May 19 04:29:18 EDT 2007
Author: mshaw
Date: 2007-05-19 04:29:18 -0400 (Sat, 19 May 2007)
New Revision: 11960
Modified:
labs/jbossrules/trunk/experimental/drools-testing/src/org/drools/testing/core/engine/TestRunner.java
Log:
Modified: labs/jbossrules/trunk/experimental/drools-testing/src/org/drools/testing/core/engine/TestRunner.java
===================================================================
--- labs/jbossrules/trunk/experimental/drools-testing/src/org/drools/testing/core/engine/TestRunner.java 2007-05-18 22:44:44 UTC (rev 11959)
+++ labs/jbossrules/trunk/experimental/drools-testing/src/org/drools/testing/core/engine/TestRunner.java 2007-05-19 08:29:18 UTC (rev 11960)
@@ -5,7 +5,6 @@
import org.apache.commons.beanutils.PropertyUtils;
import org.drools.WorkingMemory;
-import org.drools.rule.Package;
import org.drools.testing.core.exception.RuleTestLanguageException;
import org.drools.testing.core.exception.RuleTestServiceUnavailableException;
import org.drools.testing.core.filters.MultipleRuleAgendaFilter;
@@ -35,7 +34,7 @@
public class TestRunner {
private org.drools.testing.core.model.TestSuite testSuite;
- private Package pkg;
+ private org.drools.rule.Package pkg;
public TestRunner (org.drools.testing.core.model.TestSuite otherValue) {
this.testSuite = otherValue;
@@ -49,7 +48,7 @@
* @return boolean
* @throws RuleTestLanguageException
*/
- public boolean run (Package pkg) throws RuleTestLanguageException {
+ public boolean run (org.drools.rule.Package pkg) throws RuleTestLanguageException {
this.pkg = pkg;
try {
RuleBaseWrapper.getInstance().getRuleBase().addPackage(pkg);
More information about the jboss-svn-commits
mailing list