Jordi Mas i Hernandez 9fb6d31fbc 2004-02-25 Jordi Mas i Hernadez <[email protected]> 21 лет назад
..
Assembly cb6d808af9 Add license and copyright to all source files in System.Drawing 21 лет назад
Samples 95af37645c SD samples should not requiere SWF 21 лет назад
System.Drawing 43a50a0d8b 2005-02-24 Geoff Norton <[email protected]> 21 лет назад
System.Drawing.Design 15a49e8b92 Add license and copyright to all source files in System.Drawing 21 лет назад
System.Drawing.Drawing2D c47915ea2a 2005-01-02 Geoff Norton <[email protected]> 21 лет назад
System.Drawing.Imaging 9fb6d31fbc 2004-02-25 Jordi Mas i Hernadez <[email protected]> 21 лет назад
System.Drawing.Printing 70d92ded96 2005-01-27 Lluis Sanchez Gual <[email protected]> 21 лет назад
System.Drawing.Text f405a09600 removed unused variables 21 лет назад
Test 26591bc94e 2005-02-24 Jordi Mas i Hernandez <[email protected]> 21 лет назад
cdeclRedirector 5cf18eb164 precompiled windows version updated 22 лет назад
.cvsignore 97553bb62e cvs ignores, sorry about the spam 21 лет назад
ChangeLog 14d7c8b52c 2004-12-09 Geoff Norton <[email protected]> 21 лет назад
Makefile 038dc01003 * Makefile: Suppress compiler warning cs:618 for test dll. 21 лет назад
README 644e89a1c7 Minor sentence corrections. 22 лет назад
SD.csproj 0f04782509 Removed a wrong entry from files list. 21 лет назад
System.Drawing.dll.sources 14d7c8b52c 2004-12-09 Geoff Norton <[email protected]> 21 лет назад
System.Drawing_test.dll.sources e7ba4b602c 2004-09-09 Sebastien Pouliot <[email protected]> 21 лет назад

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.