Andrew Skiba 0cd6bb7536 * net_1_1_java_System.Drawing.dll.sources, vor 20 Jahren
..
Assembly 431f1b3485 Moved assembly version and assembly reference constants to a common Consts.cs file. Updated 2.0.3600.0 assembly versions to 2.0.0.0. Updated some old beta version numbers to recent ones. Fixed hard coded assembly references to use constants with the appropriate version number. vor 20 Jahren
Mainsoft.Drawing.Configuration.jvm d23b6caec3 System.Drawing.vmwcsproj: ImageCodec.jvm.cs vor 20 Jahren
Samples 2eb0ad21d0 2005-09-06 Jordi Mas <[email protected]> vor 20 Jahren
System.Drawing 93cebd367c * FontFamily.jvm.cs: fixed GetName vor 20 Jahren
System.Drawing.Design cea1bb50c5 2005-09-16 Sebastien Pouliot <[email protected]> vor 20 Jahren
System.Drawing.Drawing2D 459555c9d3 text support vor 20 Jahren
System.Drawing.Imaging d33f9e0cf7 * Bitmap.jvm.cs: fixed InternalSave() error handling vor 20 Jahren
System.Drawing.Printing ddb3048796 2005-09-16 Sebastien Pouliot <[email protected]> vor 20 Jahren
System.Drawing.Text 459555c9d3 text support vor 20 Jahren
Test 64830f336a ImageFormat.cs: Fixed ToString to use this.Equals to reflect argument changes to ImageFormat objects. Added Exif and Icon strings to ToString and reordered formats to match declaration. TestImageFormat.cs: Added ToStringTest. vor 20 Jahren
cdeclRedirector 5cf18eb164 precompiled windows version updated vor 22 Jahren
ChangeLog 0cd6bb7536 * net_1_1_java_System.Drawing.dll.sources, vor 20 Jahren
Makefile 0cd6bb7536 * net_1_1_java_System.Drawing.dll.sources, vor 20 Jahren
README 644e89a1c7 Minor sentence corrections. vor 21 Jahren
SD.csproj b63b0a86bd 2005-08-24 Marek Safar <[email protected]> vor 20 Jahren
System.Drawing.dll.sources 431f1b3485 Moved assembly version and assembly reference constants to a common Consts.cs file. Updated 2.0.3600.0 assembly versions to 2.0.0.0. Updated some old beta version numbers to recent ones. Fixed hard coded assembly references to use constants with the appropriate version number. vor 20 Jahren
System.Drawing.sln d126971b6d revert to r48170 vor 20 Jahren
System.Drawing.vmwcsproj 459555c9d3 text support vor 20 Jahren
System.Drawing_test.dll.sources f3f1d17b2b In Test/System.Drawing.Imaging: vor 20 Jahren
net_1_1_java_System.Drawing.dll.exclude.sources 0cd6bb7536 * net_1_1_java_System.Drawing.dll.sources, vor 20 Jahren
net_1_1_java_System.Drawing.dll.sources 0cd6bb7536 * net_1_1_java_System.Drawing.dll.sources, vor 20 Jahren

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.