Adjust Ryujinx.Tests.Memory namespace

This commit is contained in:
TSR Berry 2023-04-26 04:35:11 +02:00 committed by Mary
parent 609abc8b9b
commit 206e0882c2
5 changed files with 10 additions and 7 deletions

View file

@ -1,8 +1,9 @@
using Ryujinx.Memory.Range;
using Ryujinx.Memory;
using Ryujinx.Memory.Range;
using System;
using System.Collections.Generic;
namespace Ryujinx.Memory.Tests
namespace Ryujinx.Tests.Memory
{
public class MockVirtualMemoryManager : IVirtualMemoryManager
{

View file

@ -1,10 +1,11 @@
using NUnit.Framework;
using Ryujinx.Memory;
using Ryujinx.Memory.Tracking;
using System;
using System.Collections.Generic;
using System.Linq;
namespace Ryujinx.Memory.Tests
namespace Ryujinx.Tests.Memory
{
public class MultiRegionTrackingTests
{
@ -436,4 +437,4 @@ namespace Ryujinx.Memory.Tests
Assert.AreEqual(pagesModified, new bool[] { true, false, false });
}
}
}
}

View file

@ -1,8 +1,9 @@
using NUnit.Framework;
using Ryujinx.Memory;
using System;
using System.Runtime.InteropServices;
namespace Ryujinx.Memory.Tests
namespace Ryujinx.Tests.Memory
{
public class Tests
{

View file

@ -1,11 +1,12 @@
using NUnit.Framework;
using Ryujinx.Memory;
using Ryujinx.Memory.Tracking;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Threading;
namespace Ryujinx.Memory.Tests
namespace Ryujinx.Tests.Memory
{
public class TrackingTests
{

View file

@ -5,7 +5,6 @@ using Ryujinx.Common.Memory.PartialUnmaps;
using Ryujinx.Cpu;
using Ryujinx.Cpu.Jit;
using Ryujinx.Memory;
using Ryujinx.Memory.Tests;
using Ryujinx.Memory.Tracking;
using System;
using System.Collections.Generic;