diff options
author | Juergen Haug | 2012-11-08 15:51:16 +0000 |
---|---|---|
committer | Juergen Haug | 2012-11-08 15:51:16 +0000 |
commit | 81f5a744f74c664952750abd74b306f5c84fad89 (patch) | |
tree | 436097f345ba0e11037ba09206d97b56bdea6908 /tests | |
parent | 0f233b0b11dbc6b1bbaf28e238f56c4371d58f0d (diff) | |
download | org.eclipse.etrice-81f5a744f74c664952750abd74b306f5c84fad89.tar.gz org.eclipse.etrice-81f5a744f74c664952750abd74b306f5c84fad89.tar.xz org.eclipse.etrice-81f5a744f74c664952750abd74b306f5c84fad89.zip |
[CQ 6485][generator, tests] update models, fix
Change-Id: I2489ae62595265e5d7c8ef91d833b86bde485cc3
Diffstat (limited to 'tests')
-rw-r--r-- | tests/org.eclipse.etrice.generator.common.tests/models/ConfigTest.room | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/org.eclipse.etrice.generator.common.tests/models/ConfigTest.room b/tests/org.eclipse.etrice.generator.common.tests/models/ConfigTest.room index 2d3cd1549..1d93fdd65 100644 --- a/tests/org.eclipse.etrice.generator.common.tests/models/ConfigTest.room +++ b/tests/org.eclipse.etrice.generator.common.tests/models/ConfigTest.room @@ -128,16 +128,16 @@ RoomModel ConfigTest { Attribute float_c: float64 = "22.22" Attribute float_i: float64 = "33.33" - Attribute char_r: char = "'R'" - Attribute char_c: char = "'C'" - Attribute char_i: char = "'I'" + Attribute char_r: char = "R" + Attribute char_c: char = "C" + Attribute char_i: char = "I" - Attribute charArray_r[20] : char = "\"ROOM will bloom\".toCharArray()" + Attribute charArray_r[20] : char = "ROOM will bloom" Attribute charArray_c [ 20 ]: char = "ROOM Zoom" Attribute charArray_i [ 20 ]: char = "ROOM Boom" - Attribute string_r : string = "\":/\"" - Attribute string_c : string = "\":)\"" - Attribute string_i : string = "\":]\"" + Attribute string_r : string = ":/" + Attribute string_c : string = ":)" + Attribute string_i : string = ":]" Attribute array1_r [ 1 ]: int32 = "0" Attribute array1_c [ 1 ]: int32 = "0" Attribute array1_i [ 1 ]: int32 = "0" |