You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class SomeTests
{
internal class Given_non_generic_top
{
internal class Given_nested_non_generic : Given_non_generic_top
{ }
}
internal class Nested_non_generic_test : Given_non_generic_top
.Given_nested_non_generic
{
// Passes
It Should_be_ok = () => true.ShouldBeTrue();
}
internal class Given_generic_top<T>
{
internal class Given_nested_generic : Given_generic_top<T>
{ }
}
internal class Top_generic_test : Given_generic_top<int>
{
// Passes
It Should_be_ok = () => true.ShouldBeTrue();
}
internal class Nested_generic_test : Given_generic_top<int>
.Given_nested_generic
{
// Fails: The parent fixture of this test experienced a failure during test execution
It Should_be_ok = () => true.ShouldBeTrue();
}
}
The text was updated successfully, but these errors were encountered:
WaffleSouffle
added a commit
to WaffleSouffle/machine.specifications
that referenced
this issue
Mar 29, 2016
public class SomeTests
{
internal class Given_non_generic_top
{
internal class Given_nested_non_generic : Given_non_generic_top
{ }
}
The text was updated successfully, but these errors were encountered: