使用项目2中项目1的TestMethod

时间:2015-10-07 08:24:10

标签: c# methods project projects-and-solutions

您好我有一个解决方案,其中包含2个项目。两者都有很少的TestMethods,我需要在项目2中的一个方法中引用项目1中的方法(我正在使用Selenium在VS 2015上工作)。像这样的东西:

namespace Project1
{
[TestClass]
public class project1Class
{
    [TestInitialize]
    public void testInit()
    {
        [...]
    }

    [TestMethod]
    public void methodIWantToUse()
    {
        //code of that metod
    }
    [TestMethod]
    [TestMethods...]

using Project1
namespace Project2
{
[TestClass]
public class project2Class
{
    [TestInitialize]
    public void testInit()
    {
        [...]
    }

    [TestMethod]
    public void targetMethod()
    {
        //code of that metod
        -->Here i need to use method from project1<---
        //more code of that metod
    }
    [TestMethod]
    [TestMethods...]

是的,我搜索它,是的,我将Project1添加到Projec2中的引用,但我不知道该怎么做xD我是那种类型工作的新东西。

感谢所有帮助。

0 个答案:

没有答案