I have a VS Solution the structure of which you can see here:
I'm using NUnit 3.2.0 to run my tests.
How can I stop commits to my local branch if the NUnit test fails and display a message on the Git bash?
I read something about pre-commit hooks. How do I implement that here?
I'm using the NUnit Console Runner to test my UnitTests.dll using the following command line argument:
nunit3-conosle.exe UnitTests.dll /wait
P.S. Please let me know in the comments if you require more information regarding this.