add utf8_test.cpp to project

This commit is contained in:
Dick Hollenbeck 2017-03-27 18:46:34 -05:00 committed by Wayne Stambaugh
parent 4e7de8a761
commit 0aedaffed9
1 changed files with 15 additions and 0 deletions

15
tools/utf8_tests.cpp Normal file
View File

@ -0,0 +1,15 @@
#include <utf8.h>
#include <wx/string.h>
int main( int argc, char** argv )
{
UTF8 bozo = "bozo";
wxString s = bozo;
return 0;
}