Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 096c27da70f91205b6541c6ec8277d1a3d0a2d3a (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
/*******************************************************************************
 * 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 v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * CONTRIBUTORS:
 * 		Thomas Schuetz (initial contribution)
 *
 *******************************************************************************/

#ifndef SRC_CONTAINERS_STATICSTRINGTEST_H_
#define SRC_CONTAINERS_STATICSTRINGTEST_H_

#include "etUnit/etUnit.h"
#include "util/etTestSuite.h"

class StaticStringTest : public etTestSuite {

public:
	StaticStringTest() :
		etTestSuite("org.eclipse.etrice.runtime.cpp.tests.StaticStringTest"){
	}

protected:
	void testConstructors(void);
	void testSettersAndGetters(void);
	void testOperators(void);

	virtual void runAllTestCases();
};


#endif /* SRC_CONTAINERS_STATICSTRINGTEST_H_ */

Back to the top