blob: d60380265bef369322ee3a11fb1ee4ce1de25924 [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
26queue TestingMessage test_queue;
27
28queue_group TwoQueues {
29 queue TestingMessage first;
30 queue OtherTestingMessage second;
31};
32
33queue_group TwoQueues test_queuegroup;