1 /*
2  * Copyright © 2021  Behdad Esfahbod
3  *
4  *  This is part of HarfBuzz, a text shaping library.
5  *
6  * Permission is hereby granted, without written agreement and without
7  * license or royalty fees, to use, copy, modify, and distribute this
8  * software and its documentation for any purpose, provided that the
9  * above copyright notice and the following two paragraphs appear in
10  * all copies of this software.
11  *
12  * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14  * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15  * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
16  * DAMAGE.
17  *
18  * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19  * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20  * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
21  * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
23  *
24  */
25 
26 #include "hb.hh"
27 #include "hb-set.hh"
28 
29 
30 int
main(int argc,char ** argv)31 main (int argc, char **argv)
32 {
33 
34   /* Test copy constructor. */
35   {
36     hb_set_t v1 {1, 2};
37     hb_set_t v2 {v1};
38     assert (v1.get_population () == 2);
39     assert (v2.get_population () == 2);
40   }
41 
42   /* Test copy assignment. */
43   {
44     hb_set_t v1 {1, 2};
45     hb_set_t v2 = v1;
46     assert (v1.get_population () == 2);
47     assert (v2.get_population () == 2);
48   }
49 
50   /* Test move constructor. */
51   {
52     hb_set_t v {hb_set_t {1, 2}};
53     assert (v.get_population () == 2);
54   }
55 
56   /* Test move assignment. */
57   {
58     hb_set_t v;
59     v = hb_set_t {1, 2};
60     assert (v.get_population () == 2);
61   }
62 
63   /* Test initializing from iterable. */
64   {
65     hb_set_t s;
66 
67     s.add (18);
68     s.add (12);
69 
70     hb_set_t v (s);
71 
72     assert (v.get_population () == 2);
73   }
74 
75   /* Test initializing from iterator. */
76   {
77     hb_set_t s;
78 
79     s.add (18);
80     s.add (12);
81 
82     hb_set_t v (hb_iter (s));
83 
84     assert (v.get_population () == 2);
85   }
86 
87   /* Test initializing from initializer list and swapping. */
88   {
89     hb_set_t v1 {1, 2, 3};
90     hb_set_t v2 {4, 5};
91     hb_swap (v1, v2);
92     assert (v1.get_population () == 2);
93     assert (v2.get_population () == 3);
94   }
95 
96   return 0;
97 }
98