blob: 7f7dcd05213b16a4d6673d5be01e49346701bcbf [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 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:
* Henrik Rentz-Reichert (initial contribution)
*
*******************************************************************************/
#ifndef SRC_CONTAINERS_SETTEST_H_
#define SRC_CONTAINERS_SETTEST_H_
#include "etUnit/etUnit.h"
#include "util/etTestSuite.h"
class SetTest : public etTestSuite {
public:
SetTest() :
etTestSuite("org.eclipse.etrice.runtime.cpp.tests.SetTest"){
}
protected:
void testConstructors(void);
void testSettersAndGetters(void);
void testOperators(void);
virtual void runAllTestCases();
};
#endif /* SRC_CONTAINERS_SETTEST_H_ */