|
From: <tei...@us...> - 2003-11-27 17:32:16
|
Update of /cvsroot/ccmtools/ccmtools/test/CppRemoteGenerator/facet_exception
In directory sc8-pr-cvs1:/tmp/cvs-serv12261/facet_exception
Added Files:
Hello.idl
Log Message:
I added some test cases for the remote generator. Note that these tests will be removed (and added in the test/CppGenerator) after the remote generator is able to run all user_type tests.
--- NEW FILE: Hello.idl ---
/**
* Test case: facet exception
*
*/
exception error{};
exception super_error{};
exception fatal_error{};
interface Console {
long println(in string s2)
raises (error, super_error, fatal_error);
};
component Hello
{
provides Console console;
};
home HelloHome manages Hello
{
};
|