Konstantin Triger 65e373a639 TARGET_JVM: cleanup the test suite 19 éve
..
Assembly bc5aebde41 2006-12-03 Sebastien Pouliot <[email protected]> 19 éve
Mainsoft.Drawing.Configuration.jvm d23b6caec3 System.Drawing.vmwcsproj: ImageCodec.jvm.cs 20 éve
Samples 8c2d6a42a8 2006-09-20 Sebastien Pouliot <[email protected]> 19 éve
System.Drawing be50c4f1fc 2007-01-19 Sebastien Pouliot <[email protected]> 19 éve
System.Drawing.Design 12c10a5f26 2006-11-22 Sebastien Pouliot <[email protected]> 19 éve
System.Drawing.Drawing2D 18873406d0 2006-11-22 Sebastien Pouliot <[email protected]> 19 éve
System.Drawing.Imaging 6e45b43aa9 ImageAttribute.cs: Reuse code in SetColorMatrix overloads. 19 éve
System.Drawing.Printing d41f32888e 2007-01-19 Andreia Gaita <[email protected]> 19 éve
System.Drawing.Text 9bdec12456 Kill all executable flags on *.cs and ChangeLog files. 19 éve
Test 65e373a639 TARGET_JVM: cleanup the test suite 19 éve
cdeclRedirector 5cf18eb164 precompiled windows version updated 22 éve
ChangeLog 12cf6612f7 Add new non-standard size icons, 10x16 and 11x22. 19 éve
GDIPlusTest.csproj 42b427e77e 2006-08-12 Duncan Mak <[email protected]> 19 éve
Makefile 12cf6612f7 Add new non-standard size icons, 10x16 and 11x22. 19 éve
README 644e89a1c7 Minor sentence corrections. 21 éve
SD.csproj b63b0a86bd 2005-08-24 Marek Safar <[email protected]> 20 éve
System.Drawing.dll.sources 08351b8c0d 2005-12-22 Jordi Mas i Hernandez <[email protected]> 20 éve
System.Drawing.sln d126971b6d revert to r48170 20 éve
System.Drawing.vmwcsproj 74b5cc74e3 workaround removing unsafe code 19 éve
System.Drawing20.vmwcsproj 7ee5e0190e skip validation also in Release as it does not pass until after all runtime is built 19 éve
System.Drawing_test.dll.sources 3cd75196d6 19 éve
net_1_1_java_System.Drawing.dll.exclude.sources 4203043e41 correcting SystemIcons.cs reference 20 éve
net_1_1_java_System.Drawing.dll.sources 4203043e41 correcting SystemIcons.cs reference 20 éve
nunit-host-ignore-list 00dd93eeae fix hostname 19 éve
run-tests.bat 68e8a989fd Log files naming fix. 19 éve
run-tests.test.bat 08c6c3eceb Merge from branches/mainsoft/gh20preview2 19 éve
runmonotestfixture.bat 3f3b811c6f Added batch files for automatic testing for TARGET_JVM. 20 éve
runtestfixture.bat 3f3b811c6f Added batch files for automatic testing for TARGET_JVM. 20 éve

README


This README gives some details about Nunit tests and samples for
System.Drawing classes.

Following is the directory structure for the tests and samples:

Test/ (all the nunit test classes go here)
System.Drawing
System.Drawing.Drawing2D
System.Drawing.Imaging
System.Drawing.Printing
System.Drawing.Text

Samples/ (all the samples go here)
General (samples that affect more than a single area of SD)
System.Drawing
System.Drawing.Drawing2D
System.Drawing.Imaging
System.Drawing.Printing
System.Drawing.Text

Please note the directory structure given above is based on System.Drawing
namespaces.

Advice for writing System.Drawing tests/samples
===============================================

Tests are Nunit test classes and follow general Nunit test guidelines. When
you write a new test class, you need to add it to System.Drawing_test.dll.sources
file. Please follow the alphabetical order while adding the name of your test
class.

Samples are independent C# programs with a Main method. Samples are supposed
to solve two purposes. First, samples expose the bugs that are not captured
by Nunit tests. To achieve this, it is advisable not to repeat the code in a
test and a sample for any class until unless required. Second, samples help
System.Drawing users in understanding System.Drawing components as well as in
writing System.Drawing applications. Writing too trivial samples for well known
classes might not be really helpful for the users. It is better to write a sample
to solve a particular problem.