blob: f4ec67e96f1c42ea7e0ade7fd3efd65577269ea9 (
plain) (
blame)
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
46
47
48
49
50
|
/*******************************************************************************
* 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)
*
*******************************************************************************/
/*
* RunRuntimeTestcases.c
*
* Created on: 12.01.2012
* Author: tschuetz
*/
#include "RunCRuntimeTestcases.h"
#include "TestEtMessage.h"
#include "TestEtMessageQueue.h"
#include "TestEtMessageService.h"
#include "TestEtUnit.h"
#include "etUnit/etUnit.h"
void RunCRuntimeTestcases(void){
etInt16 id;
etUnit_open("tmp/testlog","TestCRuntime");
TestEtMessage_runSuite();
TestEtMessageQueue_runSuite();
TestEtMessageService_runSuite();
TestEtUnit_runSuite();
etUnit_close();
/* special situation for testing openAll and closeAll of etUnit
* this has to be done outside of etUnit_open and etUnit_close */
id = etUnit_openAll("tmp/testlog","TestEtUnitSpecial", "etUnit", "openAll and closeAll");
EXPECT_TRUE(id, "Open and Close", TRUE);
etUnit_closeAll(id);
}
|