1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/*******************************************************************************
* Copyright (c) 2011 protos software gmbh (http://www.protos.de).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* CONTRIBUTORS:
* Thomas Schuetz (initial contribution)
*
*******************************************************************************/
#include "TestEtMessage.h"
#include <stddef.h>
#include "etUnit.h"
#include "etMessage.h"
void TestEtMessage_testBasicMessage(void){
etMessage msg1 = {(etMessage*)1234567, 123,456,};
etMessage msg2 = {NULL, 222,333};
// basic checks -> detects structure changes that would cause problems for generated code
EXPECT_EQUAL_PTR("Message.next", 1234567, msg1.next);
EXPECT_EQUAL_INT16("Message.address", 123, msg1.address);
EXPECT_EQUAL_INT16("Message.evtID", 456, msg1.evtID);
// build pointer ring
msg1.next = &msg2;
msg2.next = &msg1;
EXPECT_EQUAL_INT16("msg1.NextMsg", msg2.evtID, msg1.next->evtID);
EXPECT_EQUAL_INT16("msg2.NextMsg", msg1.evtID, msg2.next->evtID);
}
void TestEtMessage_runSuite(void){
etUnit_openTestSuite("TestMessage");
ADD_TESTCASE(TestEtMessage_testBasicMessage);
etUnit_closeTestSuite();
}
|