9 lines
163 B
C++
9 lines
163 B
C++
|
#include "harness.h"
|
||
|
|
||
|
TEST_CASE(parseable) {
|
||
|
for(auto locale : Locales()) {
|
||
|
SetLocale(locale.Culture());
|
||
|
}
|
||
|
CHECK_TRUE(true); // didn't crash
|
||
|
}
|