Jordi Mas i Hernandez 7b77473ffe 2006-01-27 Jordi Mas i Hernandez <[email protected]> před 20 roky
..
Assembly bc947574c6 TARGET_JVM icon support před 20 roky
Mainsoft.Drawing.Configuration.jvm d23b6caec3 System.Drawing.vmwcsproj: ImageCodec.jvm.cs před 20 roky
Samples 7b77473ffe 2006-01-27 Jordi Mas i Hernandez <[email protected]> před 20 roky
System.Drawing 493fed4fd6 2006-01-26 Sebastien Pouliot <[email protected]> před 20 roky
System.Drawing.Design 4421bc764e In Test/System.Drawing.Design: před 20 roky
System.Drawing.Drawing2D e995f81919 2006-01-16 Sebastien Pouliot <[email protected]> před 20 roky
System.Drawing.Imaging 967f94ede2 merge -r 55606:55607 před 20 roky
System.Drawing.Printing 3e3aff3acb 2006-01-15 Jordi Mas i Hernandez <[email protected]> před 20 roky
System.Drawing.Text 1b61ab3a88 handle null string před 20 roky
Test 37c983e4f9 Tests refactoring for TARGET_JVM. před 20 roky
cdeclRedirector 5cf18eb164 precompiled windows version updated před 22 roky
ChangeLog 37e602a307 2006-01-18 Sebastien Pouliot <[email protected]> před 20 roky
Makefile 0cd6bb7536 * net_1_1_java_System.Drawing.dll.sources, před 20 roky
README 644e89a1c7 Minor sentence corrections. před 21 roky
SD.csproj b63b0a86bd 2005-08-24 Marek Safar <[email protected]> před 20 roky
System.Drawing.dll.sources 08351b8c0d 2005-12-22 Jordi Mas i Hernandez <[email protected]> před 20 roky
System.Drawing.sln d126971b6d revert to r48170 před 20 roky
System.Drawing.vmwcsproj bc947574c6 TARGET_JVM icon support před 20 roky
System.Drawing_test.dll.sources 37e602a307 2006-01-18 Sebastien Pouliot <[email protected]> před 20 roky
net_1_1_java_System.Drawing.dll.exclude.sources 4203043e41 correcting SystemIcons.cs reference před 20 roky
net_1_1_java_System.Drawing.dll.sources 4203043e41 correcting SystemIcons.cs reference před 20 roky

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.