What project to test integration in Visual Studio?
My question is pretty simple: What project should I create for Integration Tests
in Visual Studio? The only suggested project type under the tab Test
is Visual C#
equal Unit Test Project
, but this is not an integration test, so I'm not sure
This is what I was reading but couldn't find an answer:
Testing Visual Studio Integration with Different Project Types
How can I separate unit tests from integration tests in Visual Studio?
Thank!
Use the unit test project template. There you will create your integration tests.
A unit test project is just a template that contains the required dependencies. You could just create an empty project and manually add what it needs.