diff options
Diffstat (limited to '')
-rw-r--r-- | src/tests/list.cpp | 22 | ||||
-rw-r--r-- | src/tests/xml.cpp | 6 |
2 files changed, 25 insertions, 3 deletions
diff --git a/src/tests/list.cpp b/src/tests/list.cpp new file mode 100644 index 0000000..34ab656 --- /dev/null +++ b/src/tests/list.cpp | |||
@@ -0,0 +1,22 @@ | |||
1 | #include "bu/list.h" | ||
2 | |||
3 | int main() | ||
4 | { | ||
5 | Bu::List<int> l; | ||
6 | |||
7 | l.append( 0 ); | ||
8 | |||
9 | for( int j = 3; j <= 21; j += 3 ) | ||
10 | { | ||
11 | l.append( j ); | ||
12 | l.prepend( -j ); | ||
13 | } | ||
14 | |||
15 | for( Bu::List<int>::iterator i = l.begin(); i != l.end(); i++ ) | ||
16 | { | ||
17 | printf("%d ", *i ); | ||
18 | } | ||
19 | |||
20 | printf("\n\n"); | ||
21 | } | ||
22 | |||
diff --git a/src/tests/xml.cpp b/src/tests/xml.cpp index 9ef6a7e..9689a28 100644 --- a/src/tests/xml.cpp +++ b/src/tests/xml.cpp | |||
@@ -6,9 +6,9 @@ | |||
6 | int main() | 6 | int main() |
7 | { | 7 | { |
8 | Bu::File f("test.xml", "r"); | 8 | Bu::File f("test.xml", "r"); |
9 | Bu::XmlReader xr( f ); | 9 | XmlReader xr( f ); |
10 | 10 | ||
11 | xr.read(); | 11 | //xr.read(); |
12 | 12 | ||
13 | return 0; | 13 | return 0; |
14 | } | 14 | } |