SimplyVBUnit 5.0 Released
SimplyVBUnit 5.0 has been released on GitHub. It only adds a couple minor things that I found convenient. It does break some compatibility and there are no bug fixes so it’s not a recommended upgrade unless you find the new features useful.
In short the
In short the
TestSuite.Add
method has been extended a bit. It not returns the TestSuite
instance to support method chaining. It also accepts an optional name to use instead of the default class name passed in.
AddTest Sim.NewTestSuite("Suite Name") _
.Add(New TestMyClass) _
.Add(New TestOtherClass, "Cooler Name")