Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8fd5c5588d547b3f077069d5b36e64ae880df34e (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*******************************************************************************
 * Copyright (c) 2016 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 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * CONTRIBUTORS:
 * 		Jan Belle (initial contribution)
 *
 *******************************************************************************/

#include "debugging/MSCFunctionObjectTest.h"
#include "common/debugging/MSCFunctionObject.h"
#include "common/debugging/DebuggingService.h"
#include "etUnit/etUnit.h"

using namespace etRuntime;

void MSCFunctionObjectTest::test() {
	DebuggingService::getInstance().getSyncLogger().setMSC(
			"MSCFunctionObjectTest", "log/");
	DebuggingService::getInstance().getSyncLogger().open();
	DebuggingService::getInstance().getSyncLogger().setObjectName("main");
	MSCFunctionObject* obj = new MSCFunctionObject("MSCFunctionObjectTest",
			"test(void)");
	TestClassA* tca = new TestClassA();
	tca->test();
	delete tca;
	delete obj;
	DebuggingService::getInstance().getSyncLogger().close();
}

void MSCFunctionObjectTest::runAllTestCases() {
	ADD_TESTCASE_CPP(test);
}

TestClassA::TestClassA() :
		tcb() {
	MSCFunctionObject("TestClassA", "Constructor");
}

TestClassA::~TestClassA() {
	MSCFunctionObject("TestClassA", "Destructor");
}

void TestClassA::test() {

	MSCFunctionObject msc("TestClassA", "test");
	tcb.test();
}

TestClassB::TestClassB() {
	MSCFunctionObject("TestClassB", "Constructor");
}

TestClassB::~TestClassB() {
	MSCFunctionObject("TestClassB", "Destructor");
}

void TestClassB::test() {
	MSCFunctionObject("TestClassB", "test");
}

Back to the top