Open
Description
It is not an issue, but a question. I wonder is it possible to extend frozen attribute and set the value? To have something like this.
public class TestClass
{
public string TestProperty { get; set; }
}
[Test]
public void Test_method([Frozen("someString")] string parameter, TestClass sut)
{
Assert.That(sut.TestProperty, Is.EqualTo("someString"));
}
Metadata
Metadata
Assignees
Labels
Further information is requestedFurther information is requested