~wesleycutting/nunitlite/work

« back to all changes in this revision

Viewing changes to README.txt

  • Committer: Charlie Poole
  • Date: 2013-05-05 07:22:38 UTC
  • Revision ID: charlie@nunit.org-20130505072238-47bj1cqsmefodnyw
Tags: 0.9
Update doc files for release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
NUnitLite Version 0.8 - September 13, 2012
 
1
NUnitLite Version 0.9 - May 5, 2013
2
2
 
3
3
NUnitLite is a small-footprint implementation of much of the current NUnit framework. It is distributed in source form and is intended for use in situations where NUnit is too large or complex. In particular, it targets mobile and embedded environments as well as testing of applications that require "embedding" the framework in another piece of software, as when testing plugin architectures.
4
4
 
6
6
 
7
7
COPYRIGHT AND LICENSE
8
8
 
9
 
NUnitLite is Copyright � 2012, Charlie Poole and is licensed under the MIT license.
 
9
NUnitLite is Copyright � 2013, Charlie Poole and is licensed under the MIT license.
10
10
 
11
11
A copy of the license is distributed with the program in the file LICENSE.txt and is also available at http://www.opensource.org/licenses/mit-license.php.
12
12
 
15
15
ATTRIBUTES
16
16
 
17
17
NUnitLite supports most of the same attributes as NUnit 2.6.
18
 
        AsynchronousAttribute (unique to NUnitLite)
19
18
        CategoryAttribute
20
19
        CombinatorialAttribute
21
20
        CultureAttribute
47
46
        ValuesAttribute
48
47
        ValueSourceAttribute
49
48
 
50
 
The AsynchronousAttribute marks a test that returns immediately when invoked, continuing to execute on a separate thread. The containing fixture waits for such tests to complete before exiting itself.
51
 
 
52
 
 
53
49
ASSERTS
54
50
 
55
51
The programmer expresses expected test conditions using the Assert class. The existing functionality of most current NUnit Assert methods is supported, but the syntax has been changed to use the more extensible constraint-based format. The following methods are supported: