Author: rahul
Date: Wed May 28 14:10:25 2008
New Revision: 661085
URL: http://svn.apache.org/viewvc?rev=661085&view=rev
Log:
More appropriate test names now that the deprecated class is removed.
Removed a comment that should've been removed in r661081.
Modified:
commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/semantics/SCXMLSemanticsImpl.java
commons/proper/scxml/branches/J6/src/test/java/org/apache/commons/scxml/io/SCXMLParserTest.java
Modified:
commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/semantics/SCXMLSemanticsImpl.java
URL:
http://svn.apache.org/viewvc/commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/semantics/SCXMLSemanticsImpl.java?rev=661085&r1=661084&r2=661085&view=diff
==============================================================================
---
commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/semantics/SCXMLSemanticsImpl.java
(original)
+++
commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/semantics/SCXMLSemanticsImpl.java
Wed May 28 14:10:25 2008
@@ -274,7 +274,6 @@
te = new TriggerEvent(p.getId() + ".done",
TriggerEvent.CHANGE_EVENT);
internalEvents.add(te);
- //this is not in the specs, but is makes sense
scInstance.setDone(p, true);
}
}
Modified:
commons/proper/scxml/branches/J6/src/test/java/org/apache/commons/scxml/io/SCXMLParserTest.java
URL:
http://svn.apache.org/viewvc/commons/proper/scxml/branches/J6/src/test/java/org/apache/commons/scxml/io/SCXMLParserTest.java?rev=661085&r1=661084&r2=661085&view=diff
==============================================================================
---
commons/proper/scxml/branches/J6/src/test/java/org/apache/commons/scxml/io/SCXMLParserTest.java
(original)
+++
commons/proper/scxml/branches/J6/src/test/java/org/apache/commons/scxml/io/SCXMLParserTest.java
Wed May 28 14:10:25 2008
@@ -86,14 +86,14 @@
/**
* Test the implementation
*/
- public void testSCXMLDigesterMicrowave01Sample() {
+ public void testSCXMLParserMicrowave01Sample() {
scxml = SCXMLTestHelper.parse(microwave01);
assertNotNull(scxml);
scxmlAsString = serialize(scxml);
assertNotNull(scxmlAsString);
}
- public void testSCXMLDigesterMicrowave02Sample() {
+ public void testSCXMLParserMicrowave02Sample() {
scxml = SCXMLTestHelper.parse(microwave02);
assertNotNull(scxml);
scxmlAsString = serialize(scxml);
@@ -114,21 +114,21 @@
assertNotNull(scxmlAsString);
}
- public void testSCXMLDigesterTransitions01Sample() {
+ public void testSCXMLParserTransitions01Sample() {
scxml = SCXMLTestHelper.parse(transitions01);
assertNotNull(scxml);
scxmlAsString = serialize(scxml);
assertNotNull(scxmlAsString);
}
- public void testSCXMLDigesterPrefix01Sample() {
+ public void testSCXMLParserPrefix01Sample() {
scxml = SCXMLTestHelper.parse(prefix01);
assertNotNull(scxml);
scxmlAsString = serialize(scxml);
assertNotNull(scxmlAsString);
}
- public void testSCXMLDigesterSend01Sample() {
+ public void testSCXMLParserSend01Sample() {
// Digest
scxml = SCXMLTestHelper.parse(send01);
State ten = (State) scxml.getInitialTarget();