blob: 6266c84d458256c5f35663a2834abcf04ba8ea34 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 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:
* Juergen Haug (initial contribution)
*
*******************************************************************************/
#ifndef SRC_MESSAGING_ADDRESSTEST_H_
#define SRC_MESSAGING_ADDRESSTEST_H_
#include "util/etTestSuite.h"
class AddressTest: public etTestSuite {
public:
AddressTest(void) :
etTestSuite("AddressTest") {
}
protected:
void testConstructors(void);
void testOperators(void);
void testToString(void);
void testToID(void);
void testCreateInc(void);
void testIsValid(void);
virtual void runAllTestCases(void);
};
#endif /* SRC_MESSAGING_ADDRESSTEST_H_ */