Direct-BT v3.3.0-1-gc2d430c
Direct-BT - Direct Bluetooth Programming.
|
#include <cassert>
#include <cinttypes>
#include <cstring>
#include <random>
#include <vector>
#include <type_traits>
#include <jau/test/catch2_ext.hpp>
#include <jau/basic_algos.hpp>
#include <jau/basic_types.hpp>
#include <jau/darray.hpp>
#include <jau/cow_darray.hpp>
#include <jau/cow_vector.hpp>
#include <jau/counting_allocator.hpp>
#include <jau/callocator.hpp>
#include <jau/counting_callocator.hpp>
Go to the source code of this file.
Typedefs | |
typedef jau::cow_darray< uint64_t, jau::nsize_t, counting_callocator< uint64_t > > | jau_cow_darray_uint64_t |
typedef jau::cow_vector< uint64_t, counting_allocator< uint64_t > > | jau_cow_vector_uint64_t |
typedef jau::darray< uint64_t, jau::nsize_t, counting_callocator< uint64_t > > | jau_darray_uint64_t |
typedef std::vector< uint64_t, counting_allocator< uint64_t > > | std_vector_uint64_t |
Functions | |
template<class T > | |
static void | fill_list (T &data, const std::size_t size) |
template<class Iter > | |
static void | print_iterator_info (const std::string &typedefname, typename std::enable_if< !std::is_class< Iter >::value >::type *=nullptr) |
template<class Iter > | |
static void | print_iterator_info (const std::string &typedefname, typename std::enable_if< std::is_class< Iter >::value >::type *=nullptr) |
template<class T > | |
static void | print_list (const std::string &pre, T &data) |
template<class T > | |
static void | print_list (T &data) |
template<class T > | |
static bool | test_00_inspect_iterator_types (const std::string &type_id) |
template<class T > | |
static bool | test_01_cow_iterator_properties (const std::string &type_id) |
template<class T > | |
static bool | test_01_validate_iterator_ops (const std::string &type_id) |
TEST_CASE ("Iterator Test 00 - Inspect all Iterator Types", "[datatype][std][vector][darray][cow_vector][cow_darray]") | |
TEST_CASE ("JAU COW_DArray Test 21 - Validate Iterator Operations", "[datatype][jau][cow_darray]") | |
TEST_CASE ("JAU COW_Vector Test 11 - Validate Iterator Operations", "[datatype][jau][cow_vector]") | |
TEST_CASE ("JAU DArray Test 02 - Validate Iterator and Index Operations", "[datatype][jau][darray]") | |
TEST_CASE ("STD Vector Test 01 - Validate Iterator and Index Operations", "[datatype][std][vector]") | |
template<class T > | |
static bool | test_citer_type_ops (const std::string &type_id, std::enable_if_t< !is_cow_type< T >::value, bool >=true) |
template<class T > | |
static bool | test_citer_type_ops (const std::string &type_id, std::enable_if_t< is_cow_type< T >::value, bool >=true) |
template<class T , typename iterator_type1 , typename iterator_type2 > | |
static void | test_iterator_arithmetic (const typename T::size_type size, iterator_type1 &begin, iterator_type2 &end) |
template<class T , typename iterator_type1 , typename iterator_type2 , typename iterator_type3 , typename iterator_type4 > | |
static void | test_iterator_compare (const typename T::size_type size, iterator_type1 &begin, iterator_type2 &end, iterator_type3 &citer1, iterator_type4 &citer2, const typename T::difference_type citer1_idx, const typename T::difference_type citer2_idx) |
template<class T , typename iterator_type1 , typename iterator_type2 > | |
static void | test_iterator_dereference (const typename T::size_type size, iterator_type1 &begin, iterator_type2 &end) |
template<class T , typename iterator_type1 , typename iterator_type2 > | |
static void | test_iterator_equal (iterator_type1 &citer1, iterator_type2 &citer2) |
template<class T , typename iterator_type1 , typename iterator_type2 > | |
static void | test_iterator_notequal (iterator_type1 &citer1, iterator_type2 &citer2) |
template<class T > | |
static bool | test_mutable_iterator_ops (const std::string &type_id, std::enable_if_t< !is_cow_type< T >::value, bool >=true) |
template<class T > | |
static bool | test_mutable_iterator_ops (const std::string &type_id, std::enable_if_t< is_cow_type< T >::value, bool >=true) |
typedef std::vector<uint64_t, counting_allocator<uint64_t> > std_vector_uint64_t |
Definition at line 51 of file test_cow_iterator_01.cpp.
typedef jau::darray<uint64_t, jau::nsize_t, counting_callocator<uint64_t> > jau_darray_uint64_t |
Definition at line 52 of file test_cow_iterator_01.cpp.
typedef jau::cow_vector<uint64_t, counting_allocator<uint64_t> > jau_cow_vector_uint64_t |
Definition at line 53 of file test_cow_iterator_01.cpp.
typedef jau::cow_darray<uint64_t, jau::nsize_t, counting_callocator<uint64_t> > jau_cow_darray_uint64_t |
Definition at line 54 of file test_cow_iterator_01.cpp.
|
static |
Definition at line 62 of file test_cow_iterator_01.cpp.
|
static |
Definition at line 71 of file test_cow_iterator_01.cpp.
|
static |
Definition at line 80 of file test_cow_iterator_01.cpp.
|
static |
Definition at line 93 of file test_cow_iterator_01.cpp.
|
static |
Definition at line 107 of file test_cow_iterator_01.cpp.
|
static |
Definition at line 116 of file test_cow_iterator_01.cpp.
|
static |
Definition at line 140 of file test_cow_iterator_01.cpp.
|
static |
Definition at line 155 of file test_cow_iterator_01.cpp.
|
static |
Definition at line 172 of file test_cow_iterator_01.cpp.
|
static |
Definition at line 239 of file test_cow_iterator_01.cpp.
|
static |
Definition at line 291 of file test_cow_iterator_01.cpp.
|
static |
Definition at line 385 of file test_cow_iterator_01.cpp.
|
static |
Definition at line 425 of file test_cow_iterator_01.cpp.
|
static |
Definition at line 461 of file test_cow_iterator_01.cpp.
|
static |
Definition at line 796 of file test_cow_iterator_01.cpp.
|
static |
Definition at line 1104 of file test_cow_iterator_01.cpp.
|
static |
Definition at line 1114 of file test_cow_iterator_01.cpp.
TEST_CASE | ( | "Iterator Test 00 - Inspect all Iterator Types" | , |
"" | [datatype][std][vector][darray][cow_vector][cow_darray] | ||
) |
Definition at line 1255 of file test_cow_iterator_01.cpp.
TEST_CASE | ( | "STD Vector Test 01 - Validate Iterator and Index Operations" | , |
"" | [datatype][std][vector] | ||
) |
Definition at line 1262 of file test_cow_iterator_01.cpp.
TEST_CASE | ( | "JAU DArray Test 02 - Validate Iterator and Index Operations" | , |
"" | [datatype][jau][darray] | ||
) |
Definition at line 1266 of file test_cow_iterator_01.cpp.
TEST_CASE | ( | "JAU COW_Vector Test 11 - Validate Iterator Operations" | , |
"" | [datatype][jau][cow_vector] | ||
) |
Definition at line 1270 of file test_cow_iterator_01.cpp.
TEST_CASE | ( | "JAU COW_DArray Test 21 - Validate Iterator Operations" | , |
"" | [datatype][jau][cow_darray] | ||
) |
Definition at line 1276 of file test_cow_iterator_01.cpp.