#ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include #include "asserttestexit.h" #include "srchilite/langdefparserfun.h" #include "srchilite/outlangdefparserfun.h" #include "srchilite/ioexception.h" #include "srchilite/parserexception.h" using namespace std; using namespace srchilite; int main() { try { parse_lang_def("", "foo.bar"); assertFalse(true); // must not get here } catch (ParserException &e) { cout << e << endl; ostringstream output; output << e; assertEquals("cannot find input file anywhere foo.bar", output.str()); } try { parse_lang_def("", TESTSDIR "wrong_include.lang"); assertFalse(true); // must not get here } catch (ParserException &e) { cout << e << endl; ostringstream output; output << e; assertEquals("cannot open include file nonexistent.lang", output.str()); } try { parse_outlang_def("", "foo.bar"); assertFalse(true); // must not get here } catch (ParserException &e) { cout << e << endl; ostringstream output; output << e; assertEquals("cannot find input file anywhere foo.bar", output.str()); } try { parse_outlang_def("", TESTSDIR "wrong_outlang_include.outlang"); assertFalse(true); // must not get here } catch (ParserException &e) { cout << e << endl; ostringstream output; output << e; assertEquals("cannot open include file nonexistent.outlang", output.str()); } cout << "test_filenotfound: SUCCESS" << endl; return 0; }

AltStyle によって変換されたページ (->オリジナル) /