add tests

This commit is contained in:
2021-10-24 12:52:16 +02:00
parent c2c321eb9b
commit ed977be2fd
15 changed files with 2565 additions and 11 deletions

View File

@@ -1,15 +1,18 @@
# ..each entry will be a test executable
# ..the structure of the test directory should be equivalent
# ..to the structure in source/ or include/
# each entry will be a test executable.
# the structure of the test directory should be equivalent
# to the structure in source/ or include/
# Syntax:
# 'Name of the Test (e.g. class name)' : 'Path/to/source/file'
# Please keep all alphabetically sorted
test_sources_dict = {
#'PacketInfo' : 'test/PacketDissection/PacketInfo_test.cpp',
'PacketContainer' : 'test/PacketDissection/PacketContainer_test.cpp',
'Configurator' : 'test/ConfigurationManagement/Configurator_test.cpp',
'libdpdk_dummy' : 'test/libdpdk_dummy/libdpdk_dummy_test.cpp',
'Treatment' : 'test/Treatment/Treatment_test.cpp',
'RandomNumberGenerator' : 'test/RandomNumberGenerator/RandomNumberGenerator_test.cpp',
#'Attacker' : 'test/Attacker_test.cpp',
'Configurator' : 'test/Configurator_test.cpp',
#'Initializer' : 'test/Initializer_test.cpp',
#'Inspection' : 'test/Inspection_test.cpp',
'DPDK_dummy' : 'test/dpdk_dummy_test.cpp',
'PacketContainer' : 'test/PacketContainer_test.cpp',
#'PacketInfo' : 'test/PacketInfo_test.cpp',
'RandomNumberGenerator' : 'test/RandomNumberGenerator_test.cpp',
#'Treatment' : 'test/Treatment_test.cpp'
}