Skip to content

Releases: Testura/Testura.Code.UnitTestGenerator

UI 1.0.1

05 Mar 11:13
Compare
Choose a tag to compare
  • Fixed file dialog filter so we can select both .dll and .exe files.

1.0.0

01 Mar 22:27
Compare
Choose a tag to compare

First version of our simple unit test generator

  • Supported test frameworks: MsTest, NUnit
  • Supported mock frameworks: Moq
  • Will generate:
    • A unit test file for all types that are exported and isn't static or abstract
    • A setUp that initialize the type under test (TuT) by looking at it's first constructor.
    • All required parameters will either be mocked, initialized or set to some default value.
    • Will generate fields for TuT and required parameters
    • All files created will follow your assembly namespace/directory strcture.