我必须从辅助类的静态方法中找到有关当前运行的UnitTest的信息。 Idea每次测试都会获得一个独特的密钥。
我考虑过使用TestContext
,不确定是否有可能。
为例
[TestClass]
public void MyTestClass
{
public TestContext TestContext { get; set; }
[TestMethod]
public void MyTestMethod()
{
TestContext.Properties.Add("MyKey", Guid.NewGuid());
//Continue....
}
}
public static class Foo
{
public static Something GetSomething()
{
//Get the guid from test context.
//Return something base on this key
}
}
我们目前正在使用Thread.SetData
将此密钥存储在线程上,但如果测试代码产生多个线程则会出现问题。对于每个线程,我需要为给定的单元测试获得相同的密钥。
Foo.GetSomething()
不是从单元测试本身调用的。调用它的代码是由Unity注入的模拟。
修改
我会稍微解释一下背景,因为它似乎令人困惑。
通过统一创建的对象是实体框架的上下文。运行单元测试时,上下文将其数据放在由Foo.GetSomething
创建的结构中。我们称之为DataPersistance
。
DataPersistance
不能是单身人士,因为单元测试会相互影响。
我们目前每个线程有一个DataPersistance
实例,只要经过测试的代码是单线程的,那就很好了。
我想要每个单元测试一个DataPersistance
个实例。如果a可以在每个测试中获得一个唯一的guid,我可以解析该测试的实例。
答案 0 :(得分:0)
public static class Foo
{
public static Something GetSomething(Guid guid)
{
//Return something base on this key
return new Something();
}
}
测试:
[TestClass]
public void MyTestClass
{
public TestContext TestContext { get; set; }
[TestMethod]
public void MyTestMethod()
{
Guid guid = ...;
Something something = Foo.GetSomething(guid);
}
}