blob: 827b6076b4d1ebf8fcc5bd05d996c93967398919 [file] [log] [blame]
brians343bc112013-02-10 01:53:46 +00001package aos.common.testing;
2
Brian Silverman8a8ee682014-02-12 14:06:06 -08003struct Structure {
4 bool struct_bool;
5 uint16_t struct_int;
Brian Silverman1885bd02014-02-13 12:28:12 -08006 float struct_float;
Brian Silverman8a8ee682014-02-12 14:06:06 -08007};
8
9message MessageWithStructure {
10 bool other_member;
11 Structure struct1;
12 Structure struct2;
13};
14
brians343bc112013-02-10 01:53:46 +000015message TestingMessage {
16 bool test_bool;
17 int32_t test_int;
18};
19
20message OtherTestingMessage {
21 bool test_bool;
22 int32_t test_int;
23 double test_double;
24};
25
Austin Schuh7e958392014-10-21 22:16:23 -070026message MessageWithArrays {
27 uint16_t[3] test_int;
28 Structure[2] test_struct;
29};
30
brians343bc112013-02-10 01:53:46 +000031queue TestingMessage test_queue;
32
33queue_group TwoQueues {
34 queue TestingMessage first;
35 queue OtherTestingMessage second;
36};
37
38queue_group TwoQueues test_queuegroup;