| Change Set |
Date |
Downloads |
Comment |
d947e347c5c3
by
Brad
|
Mar 15 at
2:46 PM
|
9 |
default
tip
Removed unnecessary null handler checks from Executor
|
e1d08d1f8019
by
Brad
|
Mar 15 at
1:34 AM
|
1 |
Removed dependency on System.Web, so that xUnit.net can work on the client profile.
|
318d72231e2b
by
Brad
|
Mar 14 at
8:06 PM
|
0 |
Fix for issue #9662
|
4a88c8fd9992
by
Brad
|
Mar 14 at
7:50 PM
|
0 |
Fix for issue #9665
|
64667f06d214
by
Brad
|
Mar 14 at
7:38 PM
|
0 |
Fixed a bug where loading a project didn't unload/clear out the existing loaded assemblies
|
86844751749d
by
Brad
|
Mar 14 at
7:20 PM
|
0 |
Fixed issue #9658
|
e9e303b9ed70
by
Brad
|
Mar 14 at
6:48 PM
|
0 |
Fixed issue #9657
|
3e1bd3d30435
by
Brad
|
Mar 9 at
4:45 PM
|
7 |
Removed unused dependencies from projects
|
7d025d4cd6ee
by
Brad
|
Mar 1 at
1:14 AM
|
11 |
Updated GUI runner and installer icon to match the "passed" icon from the GUI
|
ca12a1a520db
by
Brad
|
Jan 30 at
11:23 PM
|
48 |
Converted Assert.Equal(1, ...) calls into Assert.Single() calls
|
840cb2a224a4
by
Brad
|
Jan 30 at
11:12 PM
|
0 |
Converted LINQ .Single() calls into Assert.Single() calls
|
ec79e685f1d3
by
Brad
|
Jan 30 at
11:04 PM
|
0 |
Introduced Assert.Single(), which works against IEnumerable and IEnumerable<T>
|
d76ed10d855d
by
Brad
|
Jan 30 at
10:00 PM
|
0 |
IResultXmlTransform.OutputType was removed as no code was using it. IResultXmlTransform.Filename was renamed to OutputFilename. Refactored transformer creation out of Program and into TransformFactory in xunit.console. Added XslStreamTransformer.XslFilename. Added delayed file opening logic to XslStreamTransformer. Removed duplicated use of config out of CommandLine and centralized it in TransformFactory. Bumped version to 1.6 in anticipation of next release.
|
24db08dd9876
by
Brad
|
Jan 30 at
7:17 PM
|
0 |
Refactored CommandLine class to do all work in static Parse() method
|
494359dbefd3
by
Brad
|
Jan 30 at
6:39 PM
|
0 |
Initial run at CommandLine class
|
98175a41d4f7
by
Brad
|
Jan 28 at
12:01 AM
|
2 |
Updated .hgignore, removed Samples\.tfs-ignore
|
763611e6a141
by
Brad
|
Jan 27 at
11:56 PM
|
0 |
Removed .tfs-ignore, added .hgignore
|
ee0824d064f8
by
BradWilson
|
Jan 1 at
12:16 AM
|
3 |
Added total of totals to the console runner output. Some code cleanup, but let's be honest, the console runner code is still horrifying. At least it's not as bad as the GUI.
|
79b74bfe7f7a
by
BradWilson
|
Dec 31 2009 at
11:32 PM
|
0 |
Added ability to run .xunit project files to console runner
|
2be9e96361b6
by
BradWilson
|
Dec 31 2009 at
10:13 PM
|
0 |
Reworking the console runner on the path to supporting .xunit project files. Created new and vastly superior output system (no kidding!). Also, made LifetimeCommand catch and re-throw the inner exception when it encounters a TargetInvocationException because the constructor of a test class threw an exception.
|
88fafc18b653
by
BradWilson
|
Dec 30 2009 at
12:24 AM
|
0 |
Added an orange color to the GUI status bar when one or more assemblies have been reloaded. Added a (currently skipped) test for stack overflow situations (which we can't deal with yet). Added missing XML doc comments to FactCommand.
|
28ed6a6d3883
by
BradWilson
|
Dec 29 2009 at
11:41 PM
|
0 |
Removed NUnit runner sample. Updated other samples to build 1486.
|
1c3fa59a42a5
by
BradWilson
|
Dec 29 2009 at
11:26 PM
|
0 |
Fix for issue #9647
|
d175e787c9a9
by
BradWilson
|
Dec 29 2009 at
11:09 PM
|
0 |
Introduced Timeout property to ITestCommand. This was necessary for the bug fix described below. Converted TestCommand into an abstract base class (abstract Execute method), and introduced FactCommand (which derives from TestCommand), which uses reflection to get the information from FactAttribute to feed into the TestCommand constructor. This more clearly represents the two pieces of behavior that TestCommand used to represent: default implementation of most of ITestCommand (now what TestCommand is), and implementation of behavior which is specific to facts (now what FactCommand is). TheoryCommand continues to derive from TestCommand. Moved SkipCommand creation behavior out of FactAttribute and into TestClassCommand. Moved TimeoutCommand creation behavior out of FactAttribute and into TestCommandFactory. This is to fix issue #9646, which caused the constructor of a test class to run on a different thread than the test or dispose methods, whenever the user applied a Timeout value to the test. The creation and disposal of fixture data to support IUseFixture<> will continue to run on a different thread, but this should not be an undue hardship, seeing as fixtures should never require thread-local storage. Added MethodUtility.GetDisplayName(). The changes for ITestCommand and TestCommand are breaking changes for anybody who may be implementing one of these types. The impact of this change should be relatively small, and limited to anybody who is implementing their own RunWith() features on top of xUnit.net.
|
5bbad1c1cc2a
by
BradWilson
|
Dec 29 2009 at
6:27 PM
|
0 |
Fix for issue #8052
|