Line data Source code
1 : //
2 : // Author: Vladimir Migashko <migashko@gmail.com>, (C) 2012
3 : //
4 : // Copyright: See COPYING file that comes with this distribution
5 : //
6 :
7 : #include <fas/testing.hpp>
8 : #include <vset/array.hpp>
9 : #include <vset/sorted_array.hpp>
10 :
11 3 : UNIT(test_array, "")
12 : {
13 : using namespace fas::testing;
14 : using namespace vset;
15 :
16 1 : array<int, 1024> arr;
17 1 : t << nothing;
18 1 : }
19 :
20 3 : UNIT(test_sorted_array, "")
21 : {
22 : using namespace fas::testing;
23 : using namespace vset;
24 :
25 1 : sorted_array<int, 1024> arr;
26 1 : t << nothing;
27 1 : }
28 :
29 1 : BEGIN_SUITE(array_suite, "")
30 : ADD_UNIT(test_array)
31 : ADD_UNIT(test_sorted_array)
32 7 : END_SUITE(array_suite)
|