I created a C # MVC project and then added a Unit test project to it. Now the structure is as follows:
Decision
|
| _ UnitTest project
|
| _ MyProject
Now, from the Unit test project, I need to pass MyProject, how can I write it,
I wrote the following, but it did not work;
using MyProject.View;
How can i solve this?
source share