IntelliTect / CodingGuidelines

A repository to contain IntelliTect's tools for coding conventions
https://intellitect.github.io/CodingGuidelines/
MIT License
11 stars 17 forks source link

Add testing frameworks #174

Open philspokas opened 3 years ago

philspokas commented 3 years ago

As a dev or tester, I want to know what testing frameworks IntelliTect uses and why so that I can leverage that knowledge in my own projects

Keboo commented 2 years ago

For C# on all new greenfield development we recommend unit testing xUnit or MSTest v2. When DI is used, consider also leveraging a mocking library such as Moq (with Moq.AutoMocker) to provide an easy way to populate dependencies in the tests.

Need to determine recommendations for:

PowerShell: ? Python: JavaScript: TypeScript: