swig/Examples/test-suite/csharp
2014-03-16 00:44:30 +00:00
..
aggregate_runme.cs
allprotected_runme.cs
apply_strings_runme.cs
bools_runme.cs
catches_runme.cs
char_strings_runme.cs
constover_runme.cs
csharp_attributes_runme.cs
csharp_exceptions_runme.cs
csharp_lib_arrays_runme.cs
csharp_prepost_runme.cs Fix spacing in generated code for csdirectorin 'pre', 'post' and 'terminator' attributes. Add some more tests for these attributes. 2013-01-11 19:47:10 +00:00
csharp_typemaps_runme.cs
default_args_runme.cs
default_constructor_runme.cs
director_alternating_runme.cs
director_basic_runme.cs
director_classes_runme.cs
director_classic_runme.cs
director_ignore_runme.cs
director_nspace_runme.cs director_nspace fixes for C# for previous commit 2013-01-03 20:49:10 +00:00
director_primitives_runme.cs
director_protected_runme.cs
director_smartptr_runme.cs Add check for smart pointer type in generated code for director connection. This fixes a crash in the generated code caused by the dynamic_cast returning 0 because the specified types are incorrect for smart pointer types. 2013-04-17 21:55:11 +01:00
director_string_runme.cs
enum_forward_runme.cs Fix C enum forward declarations in some target languages (notably Java) 2012-05-01 18:44:22 +00:00
enum_thorough_runme.cs
enum_thorough_simple_runme.cs
enum_thorough_typesafe_runme.cs
exception_order_runme.cs
friends_runme.cs Add in missing wrappers for friend functions for some target languages 2011-04-01 23:06:40 +00:00
imports_runme.cs
inherit_target_language_runme.cs
intermediary_classname_runme.cs
li_attribute_runme.cs
li_boost_shared_ptr_bits_runme.cs
li_boost_shared_ptr_runme.cs Java/C# smart pointer tests: Give GC more time to collect objects 2014-03-16 00:44:30 +00:00
li_std_auto_ptr_runme.cs Java/C# smart pointer tests: Give GC more time to collect objects 2014-03-16 00:44:30 +00:00
li_std_combinations_runme.cs
li_std_except_runme.cs
li_std_map_runme.cs Convert to unix fileformat 2013-01-12 16:54:45 +00:00
li_std_string_runme.cs
li_std_vector_enum_runme.cs Fix #3475492 - iterating through std::vector wrappers of enumerations. 2012-03-13 07:10:24 +00:00
li_std_vector_runme.cs Since SWIG 3.0 removes support for .NET 1.1, cleanup the C# library by removing the use of the SWIG_DOTNET_1 macro. 2013-10-17 13:58:32 -05:00
li_std_wstring_runme.cs
li_swigtype_inout_runme.cs Add new swigtype_inout.i library containing SWIGTYPE *& OUTPUT typemaps. 2014-02-04 06:54:22 +00:00
li_typemaps_runme.cs
long_long_runme.cs
Makefile.in Slight wording change when running test-suite 2014-02-22 20:51:27 +00:00
member_pointer_runme.cs
nested_class_runme.cs fixed %template declared within class, next to template declaration 2013-12-16 11:43:28 +04:00
nested_directors_runme.cs fixes for director class naming when nested classes are used 2014-03-13 18:58:29 +04:00
nested_structs_runme.cs fixed %template declared within class, next to template declaration 2013-12-16 11:43:28 +04:00
nested_workaround_runme.cs fixed %template declared within class, next to template declaration 2013-12-16 11:43:28 +04:00
nspace_extend_runme.cs
nspace_runme.cs
operator_overload_runme.cs
overload_complicated_runme.cs
overload_template_runme.cs
pointer_reference_runme.cs
preproc_constants_c_runme.cs
preproc_constants_runme.cs
README
rename_pcre_encoder_runme.cs Add support for case conversion characters in regex substitutions. 2013-10-15 07:17:56 +01:00
rename_pcre_enum_runme.cs
rename_simple_runme.cs
sizet_runme.cs
sneaky1_runme.cs
special_variable_macros_runme.cs Document patch #33 from previous commit and complete run time tests 2013-04-18 23:20:48 +01:00
template_nested_runme.cs fixed %template declared within class, next to template declaration 2013-12-16 11:43:28 +04:00
threads_runme.cs
throw_exception_runme.cs
typemap_namespace_runme.cs
typemap_out_optimal_runme.cs
varargs_runme.cs
virtual_poly_runme.cs

SWIG testsuite README file
--------------------------

This testsuite is here to ensure SWIG can handle a wide range of c/c++
syntax. The testsuite comprises many testcases in this directory. Each
test case is tested under each of the language modules thereby
thoroughly testing all of SWIG. It ensures that each of the language
modules are at a similar standard.

Those modules that support shadow classes run the tests producing
shadow classes to test the full language module functionality.

Some test cases need a runtime test. These need implementing in each
of the language modules. The language modules look for a file in the
language specific test-suite directory which has _runme appended after
the testcase name. If one is found it will be run as part of the test.

Some language modules add to this common set of test cases for
language specific tests. These can be found in the appropriate
language test-suite directory. There is also a README in each of the
language module directories.

For each testcase a message showing which testcase is being tested is
displayed. Nothing else is printed unless the test fails.


Some Developer Guidelines
-------------------------

Note that the whole test suite need not be run each time a testcase is
modified. An individual testcase may be run by going to the language
module test-suite directory and using make testcasename.xxx where xxx
is the type of test (eg cpptest). See common.mk. make -s doesn't print
any junk on the screen and is useful for emulating the way make check
works from the SWIG root directory.

If there are runtime tests needed, don't print anything unless there
is an error in which case stderr is suggested.

Please set the name of the module to the same name as the testcase,
otherwise modules will not be found.