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