Skip to content

Commit

Permalink
Move roundtrip tests to their own namespace.
Browse files Browse the repository at this point in the history
This makes it easier to run the fast non-roundtrip tests.
  • Loading branch information
dgrunwald committed Jul 21, 2024
1 parent 9548a11 commit 1616d15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ICSharpCode.Decompiler.Tests/Helpers/Tester.cs
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ public static async Task<CompilerResults> CompileCSharp(string sourceFileName, C
{
CompilerResults results = new CompilerResults();
results.PathToAssembly = outputFileName;
string testBasePath = RoundtripAssembly.TestDir;
string testBasePath = Roundtrip.RoundtripAssembly.TestDir;
if (!Directory.Exists(testBasePath))
{
Assert.Ignore($"Compilation with mcs ignored: test directory '{testBasePath}' needs to be checked out separately." + Environment.NewLine +
Expand Down
2 changes: 1 addition & 1 deletion ICSharpCode.Decompiler.Tests/RoundtripAssembly.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

using NUnit.Framework;

namespace ICSharpCode.Decompiler.Tests
namespace ICSharpCode.Decompiler.Tests.Roundtrip
{
[TestFixture, Parallelizable(ParallelScope.All)]
public class RoundtripAssembly
Expand Down

0 comments on commit 1616d15

Please sign in to comment.