Sha256: 5fdfce2658e4316edff80104a81a29c89dd0f0851a347e607fe9441dddf0612a
Contents?: true
Size: 1.14 KB
Versions: 13
Compression:
Stored size: 1.14 KB
Contents
// Copyright (C) 2003 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_BINARY_SEARCH_TREE_KERNEl_TEST_ #define DLIB_BINARY_SEARCH_TREE_KERNEl_TEST_ #include <sstream> #include <string> #include <cstdlib> #include <ctime> #include <dlib/memory_manager_global.h> #include <dlib/memory_manager_stateless.h> #include <dlib/binary_search_tree.h> #include "tester.h" #include "binary_search_tree.h" namespace { class binary_search_tree_tester : public tester { public: binary_search_tree_tester ( ) : tester ("test_binary_search_tree_kernel_1a", "Runs tests on the binary_search_tree_kernel_1a component.") {} void perform_test ( ) { dlog << LINFO << "testing kernel_1a"; binary_search_tree_kernel_test<binary_search_tree<int,int>::kernel_1a>(); print_spinner(); dlog << LINFO << "testing kernel_1a_c"; binary_search_tree_kernel_test<binary_search_tree<int,int>::kernel_1a_c>(); print_spinner(); } } a; } #endif
Version data entries
13 entries across 13 versions & 1 rubygems