静的クラスがある場合:
public static class Foo
{
public static string Bar = "baz";
}
そして、xunit テスト内で、次のようなことを行います (不自然):
public class FooTests
{
[Fact]
public void Bar_can_be_set_to_buz()
{
Foo.Bar = "buz";
}
[Fact]
public void Some_other_test()
{
//Is Foo.Bar "buz", or is there isolation ?
}
}
外部静的クラスは両方のテストで共有されていますか、またはテスト間で完全に分離されていますか?