blob: 1210fd26d881d6b0c46e21081b1674b5f2faeefa [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 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:
* Henrik Rentz-Reichert (initial contribution)
*
*******************************************************************************/
#ifndef SRC_CONTAINERS_STRINGTEST_H_
#define SRC_CONTAINERS_STRINGTEST_H_
#include "etUnit/etUnit.h"
#include "util/etTestSuite.h"
class StringTest : public etTestSuite {
public:
StringTest() :
etTestSuite("org.eclipse.etrice.runtime.cpp.tests.StringTest"){
}
protected:
void testConstructors(void);
void testSettersAndGetters(void);
void testOperators(void);
virtual void runAllTestCases();
};
#endif /* SRC_CONTAINERS_STRINGTEST_H_ */