Releases: tenpn/untest
Moved to MIT license
No other changes.
See discussion here: http://www.reddit.com/r/Unity3D/comments/1jqayc/untest_a_groundup_unit_testing_framework_for
New Asserts, bug fixes
new asserts:
Assert.IsFalse()
Assert.ThatThrowsException()
Assert.IsEqualSequence()
Fixed not finding private non-virtual Setups in base classes of derived test suites.
Fixed UnTest-Console exiting with 255 code even if all tests pass.
Fixed RunTests.sh not showing line numbers of failed tests.
UnTest-Console now available
a .net command-line tool that loads assemblies, and runs tests that it finds. much quicker than trying to run the tests from inside unity via the command line.
Find the tool in UnTest/Editor/UnTest-Console/bin/Release.
Also: UnTest/Editor/RunTests.sh takes a unity SLN file as a parameter, builds using mdtool, then runs tests using UnTest-Console. Depends on having Xamarin Studio installed.
v0.2.0
New Assert function
Assert.IsEqual(a,b) throws exception with helpful text showing values of a and b
First usable release!
Now includes UnTest.Assert class, dogfooded with an UnTest test suite!