Let Say I have the following C # project structure in Visual Studio
- Spec
- UserStory1.html
- UserStory2.html
- Tests
Now I want to connect my unit tests using the specification written in html as follows
//http://../path.to.UserStory1.html
Thus, when I CTRL + Clik the link in the comment, I can go to the specification and see what should really be checked. The problem is that I do not know how to make the relative path to the html file included in the project.
- How can i do this?
- If not in standard VS, is there a plugin available that will allow this?
source share