Skip to content

Releases: tenpn/untest

Moved to MIT license

06 Aug 09:10
Compare
Choose a tag to compare

New Asserts, bug fixes

03 Aug 16:25
Compare
Choose a tag to compare
Pre-release

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

29 Jul 11:25
Compare
Choose a tag to compare
Pre-release

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

28 Jul 11:38
Compare
Choose a tag to compare
v0.2.0 Pre-release
Pre-release
  • moved to GPLv2 license
  • breaking change: untest moved out of assets/scripts into assets/untest
  • breaking change: SuiteSetup is now TestSetup
  • Assert.IsEqual() can cope with nulls
  • TestSetups captured from base classes of TestSuites

New Assert function

24 Jul 18:01
Compare
Choose a tag to compare
New Assert function Pre-release
Pre-release

Assert.IsEqual(a,b) throws exception with helpful text showing values of a and b

First usable release!

24 Jul 14:55
Compare
Choose a tag to compare
First usable release! Pre-release
Pre-release

Now includes UnTest.Assert class, dogfooded with an UnTest test suite!