Skip to content

UTUBMIR/Utests

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 

Repository files navigation

Simple example

namespace Example {
    internal class Program {
        static object test1() {
            Console.WriteLine("2 * 6");
            return 2 * 6;
        }

        static void Main(string[] args) {
            UTests uTests = new UTests();

            uTests.tests?.Add(test1);

            uTests.PassedPrint([12]);
        }
    }
}

after starting this code you will see this: image

  • Support any return type in test functions
  • Support any parameters it test function
  • Print formatting

About

simple unit tests for c#

Resources

Stars

Watchers

Forks

Languages