diff options
Diffstat (limited to 'modules/tools/tests/c_iface.cpp')
-rw-r--r-- | modules/tools/tests/c_iface.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/tools/tests/c_iface.cpp b/modules/tools/tests/c_iface.cpp index 676b5de..01f981e 100644 --- a/modules/tools/tests/c_iface.cpp +++ b/modules/tools/tests/c_iface.cpp @@ -68,6 +68,7 @@ SAW_TEST("CIface Empty Interface"){ test_generate<schema::TestEmptyInterface>(res,src); std::cout<<"\n"<<res<<"\n"<<std::endl; + std::cout<<"\nSource\n"<<src<<"\n"<<std::endl; } SAW_TEST("CIface One Function Interface"){ @@ -77,6 +78,7 @@ SAW_TEST("CIface One Function Interface"){ std::string src; test_generate<schema::TestOneFunctionInterface>(res, src); std::cout<<"\n"<<res<<"\n"<<std::endl; + std::cout<<"\nSource\n"<<src<<"\n"<<std::endl; } SAW_TEST("CIface Multi Function Interface"){ @@ -86,6 +88,7 @@ SAW_TEST("CIface Multi Function Interface"){ std::string src; test_generate<schema::TestMultiFunctionInterface>(res, src); std::cout<<"\n"<<res<<"\n"<<std::endl; + std::cout<<"\nSource\n"<<src<<"\n"<<std::endl; } SAW_TEST("CIface Array Function Interface"){ @@ -95,5 +98,6 @@ SAW_TEST("CIface Array Function Interface"){ std::string src; test_generate<schema::TestArrayFunctionInterface>(res, src); std::cout<<"\n"<<res<<"\n"<<std::endl; + std::cout<<"\nSource\n"<<src<<"\n"<<std::endl; } } |