]> git.lyx.org Git - lyx.git/blob - src/support/tests/lstrings.C
the convert patch
[lyx.git] / src / support / tests / lstrings.C
1 #include "../lstrings.h"
2
3 #include <iostream>
4
5 using namespace lyx::support;
6
7 using namespace std;
8
9 void test_lowercase()
10 {
11         cout << lowercase('A') << endl;
12         cout << lowercase("AlLe") << endl;
13 }
14
15 void test_uppercase()
16 {
17         cout << uppercase('a') << endl;
18         cout << uppercase("AlLe") << endl;
19 }
20
21 int main() 
22 {
23         test_lowercase();
24         test_uppercase();
25 }