Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuergen Haug2014-04-30 11:19:11 +0000
committerHenrik Rentz-Reichert2014-04-30 14:39:57 +0000
commit5ce25dd11e598a8dfa4b828d7e0f3c93591f96ec (patch)
tree0496cefe7f79ad1bf56dea505fb8bfd070149ee2
parent548f144a306f6c6452f1b22711530c078a5723ce (diff)
downloadorg.eclipse.etrice-5ce25dd11e598a8dfa4b828d7e0f3c93591f96ec.tar.gz
org.eclipse.etrice-5ce25dd11e598a8dfa4b828d7e0f3c93591f96ec.tar.xz
org.eclipse.etrice-5ce25dd11e598a8dfa4b828d7e0f3c93591f96ec.zip
[common.test] removed unused config file
-rw-r--r--tests/org.eclipse.etrice.generator.common.tests/models/DynamicConfigTest_Java.config117
1 files changed, 0 insertions, 117 deletions
diff --git a/tests/org.eclipse.etrice.generator.common.tests/models/DynamicConfigTest_Java.config b/tests/org.eclipse.etrice.generator.common.tests/models/DynamicConfigTest_Java.config
deleted file mode 100644
index 9d244c619..000000000
--- a/tests/org.eclipse.etrice.generator.common.tests/models/DynamicConfigTest_Java.config
+++ /dev/null
@@ -1,117 +0,0 @@
-ConfigModel DynamicTestConfig {
- import DynamicConfigTest.* from "DynamicConfigTest_Java.room"
- SubSystemConfig System_DynConfigTest / subSystem {
- dynamic configuration {
- user import "" user constructor "ConfigSourceTestInstance.getInstance()" polling timer [ms] 200
- }
- }
-
- ActorClassConfig Testee_ac {
- Attr aBool = false
- Attr aInt8 = 0 {
- min = -1 max = 59
- }
- Attr aInt16 = 0 {
- min = -1 max = 59
- }
- Attr aInt32 = 0 {
- min = -1 max = 59
- }
- Attr aInt64 = 0 {
- min = -1 max = 59
- }
- Attr aFloat32 = 0. {
- min = -1. max = 59.
- }
- Attr aFloat64 = 0. {
- min = -1. max = 59.
- }
- Attr aChar = ''
- Attr aString = ""
- Attr aBool_array = false
- Attr aInt8_array = 0 {
- min = -1 max = 59
- }
- Attr aInt16_array = 0 {
- min = -1 max = 59
- }
- Attr aInt32_array = 0 {
- min = -1 max = 59
- }
- Attr aInt64_array = 0 {
- min = -1 max = 59
- }
- Attr aFloat32_array = 0.0 {
- min = -1.0 max = 59.0
- }
- Attr aFloat64_array = 0.0 {
- min = -1.0 max = 59.0
- }
- Attr aChar_array
- Attr dc {
- Attr nested {
- Attr aInt32 = 0 {
- min = -1 max = 59
- }
- }
- }
- }
-
- ActorInstanceConfig System_DynConfigTest / subSystem / testee {
- Attr aInt8 {
- dynamic configuration read
- }
- Attr aInt16 {
- dynamic configuration read
- }
- Attr aInt32 {
- dynamic configuration read
- }
- Attr aInt64 {
- dynamic configuration read
- }
- Attr aFloat32 {
- dynamic configuration read
- }
- Attr aFloat64 {
- dynamic configuration read
- }
- Attr aBool {
- dynamic configuration read
- }
- Attr aChar {
- dynamic configuration read
- }
- Attr aString {
- dynamic configuration read
- }
- Attr aInt8_array {
- dynamic configuration read
- }
- Attr aInt16_array {
- dynamic configuration read
- }
- Attr aInt32_array {
- dynamic configuration read
- }
- Attr aInt64_array {
- dynamic configuration read
- }
- Attr aFloat32_array {
- dynamic configuration read
- }
- Attr aFloat64_array {
- dynamic configuration read
- }
- Attr aBool_array {
- dynamic configuration read
- }
- Attr aChar_array {
- dynamic configuration read
- }
- Attr dc {
- dynamic configuration read
- }
- }
-
-} \ No newline at end of file

Back to the top