Browse Source
* Update to xunit.v3 * Little more progress * More fixes * Keep VSTest supported * Adjust Nuke * Few fixes * Fix for xunit 2 * Fix GetData override * Adjust * Use MTP for xunit 2 * Fix test * Better fix * --no-progress * Few more fixes * no progress * Fix test * Better fix * TRX * Move to Directory.Build.props * Unify on MTP v2 * Update * Update to stable * 1.0.1 * 1.0.2 * Fix some warnings * Fix more warnings * Fix more warningspull/20249/merge
committed by
GitHub
78 changed files with 285 additions and 214 deletions
@ -1,13 +1,20 @@ |
|||
using Xunit; |
|||
using System.Runtime.CompilerServices; |
|||
using Xunit; |
|||
|
|||
namespace Avalonia.RenderTests.WpfCompare; |
|||
|
|||
public class CrossFactAttribute : StaFactAttribute |
|||
{ |
|||
|
|||
public CrossFactAttribute([CallerFilePath] string? sourceFilePath = null, [CallerLineNumber] int sourceLineNumber = -1) |
|||
: base(sourceFilePath, sourceLineNumber) |
|||
{ |
|||
} |
|||
} |
|||
|
|||
public class CrossTheoryAttribute : StaTheoryAttribute |
|||
{ |
|||
|
|||
public CrossTheoryAttribute([CallerFilePath] string? sourceFilePath = null, [CallerLineNumber] int sourceLineNumber = -1) |
|||
: base(sourceFilePath, sourceLineNumber) |
|||
{ |
|||
} |
|||
} |
|||
|
|||
Loading…
Reference in new issue