Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.etrice.generator.tests/models/test.room')
-rw-r--r--tests/org.eclipse.etrice.generator.tests/models/test.room30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/org.eclipse.etrice.generator.tests/models/test.room b/tests/org.eclipse.etrice.generator.tests/models/test.room
deleted file mode 100644
index 6a608fc09..000000000
--- a/tests/org.eclipse.etrice.generator.tests/models/test.room
+++ /dev/null
@@ -1,30 +0,0 @@
-RoomModel test {
- ProtocolClass MyProtocol {
- incoming {
- Message in1()
- }
- outgoing {
- }
- }
-
- ActorClass Base {
- Interface {
- Port p: MyProtocol
- }
- Behavior {
- StateMachine {
- State sBase {}
- }
- }
- }
-
- ActorClass Derived extends Base {
- Behavior {
- StateMachine {
- State s {}
- State y {}
- RefinedState sBase {}
- }
- }
- }
-}

Back to the top