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
Added non Generic ClassConstructorAttribute for F# and VB.NET (#2402)
* Created ClassConstructorTest for VB and F#
* Update ClassConstructorAttribute.cs
* ClassConstructorWithEnumeralTest for VB & F#
* code quality fixes
* Updated PublicAPI for TUnit.Core
public sealed class ClassConstructorAttribute<[System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors)] T> : TUnit.Core.ClassConstructorAttribute
125
131
where T : TUnit.Core.Interfaces.IClassConstructor, new ()
126
132
{
127
133
public ClassConstructorAttribute() { }
128
-
public override System.Type ClassConstructorType { get; }
134
+
public override System.Type ClassConstructorType { get; set; }
129
135
}
130
136
public class ClassConstructorMetadata : System.IEquatable<TUnit.Core.ClassConstructorMetadata>
public sealed class ClassConstructorAttribute<[System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors)] T> : TUnit.Core.ClassConstructorAttribute
125
131
where T : TUnit.Core.Interfaces.IClassConstructor, new ()
126
132
{
127
133
public ClassConstructorAttribute() { }
128
-
public override System.Type ClassConstructorType { get; }
134
+
public override System.Type ClassConstructorType { get; set; }
129
135
}
130
136
public class ClassConstructorMetadata : System.IEquatable<TUnit.Core.ClassConstructorMetadata>
0 commit comments