| 1234567891011121314151617181920212223242526272829303132 |
- /*******************************************************************************
- * Copyright (c) 2014, Rockwell Automation, Inc.
- * All rights reserved.
- *
- ******************************************************************************/
- /** @file OpENerTests.h
- * @brief This file includes all test groups of the OpENer test suite
- */
- #ifndef TESTS_OPENERTESTS_H_
- #define TESTS_OPENERTESTS_H_
- #include "CppUTest/CommandLineTestRunner.h"
- IMPORT_TEST_GROUP(RandomClass);
- IMPORT_TEST_GROUP(XorShiftRandom);
- IMPORT_TEST_GROUP(EndianConversion);
- IMPORT_TEST_GROUP(CipCommon);
- IMPORT_TEST_GROUP(CipEpath);
- IMPORT_TEST_GROUP(CipElectronicKey);
- IMPORT_TEST_GROUP(CipElectronicKeyFormat);
- IMPORT_TEST_GROUP(CipConnectionManager);
- IMPORT_TEST_GROUP(CipConnectionObject);
- IMPORT_TEST_GROUP(SocketTimer);
- IMPORT_TEST_GROUP(CheckEncapsulationInactivity);
- IMPORT_TEST_GROUP(NetworkHandlerSecurity);
- IMPORT_TEST_GROUP(DoublyLinkedList);
- IMPORT_TEST_GROUP(EncapsulationProtocol);
- IMPORT_TEST_GROUP(CipString);
- #endif // TESTS_OPENERTESTS_H_
|