Skip to content

Commit f8f6c6c

Browse files
committed
Define Type trait on class for expression tests
1 parent e694145 commit f8f6c6c

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<Trait("Source", "VBCompilerGenerated")>
2+
<Trait("Type", "Expression object")> ' TODO ideally this would be on the base class, but https://github.com/xunit/xunit/issues/1397
23
Public MustInherit Class VBCompilerGeneratedBase
34
Inherits TestsBase
45
End Class

Tests.Common/CompilerGenerated/CompilerGenerated.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33

44
namespace ExpressionToString.Tests {
55
[Trait("Source", CSharpCompiler)]
6+
[Trait("Type", "Expression object")] // TODO ideally this would be on the base class, but https://github.com/xunit/xunit/issues/1397
67
public abstract partial class CompilerGeneratedBase : TestsBase { }
78
}

Tests.Common/Constructed/Constructed.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33

44
namespace ExpressionToString.Tests {
55
[Trait("Source", FactoryMethods)]
6+
[Trait("Type", "Expression object")] // TODO ideally this would be on the base class, but https://github.com/xunit/xunit/issues/1397
67
public abstract partial class ConstructedBase : TestsBase { }
78
}

0 commit comments

Comments
 (0)