blob: d997a9cc3dcfbf710ef77f5cc3daa357384fa224 [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_VECTORTEST_H_
#define SRC_CONTAINERS_VECTORTEST_H_
#include "etUnit/etUnit.h"
#include "util/etTestSuite.h"
class VectorTest : public etTestSuite {
public:
VectorTest() :
etTestSuite("VectorTest"){
}
protected:
void testConstructors(void);
void testSettersAndGetters(void);
void testOperators(void);
virtual void runAllTestCases();
};
#endif /* SRC_CONTAINERS_VECTORTEST_H_ */