mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-24 12:35:31 +00:00
Convert existing tests to nunit.
This commit is contained in:
parent
bdb106c966
commit
80bc4d451e
2 changed files with 5 additions and 4 deletions
|
|
@ -57,7 +57,9 @@
|
||||||
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
|
<Reference Include="nunit.framework">
|
||||||
|
<HintPath>..\..\Resources\Dependencies\NUnit\nunit.framework.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
<Reference Include="System.Xml.Linq" />
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
|
|
||||||
|
|
@ -3,12 +3,11 @@ using System.Linq;
|
||||||
|
|
||||||
using Cosmos.Debug.Common;
|
using Cosmos.Debug.Common;
|
||||||
using Cosmos.IL2CPU;
|
using Cosmos.IL2CPU;
|
||||||
|
using NUnit.Framework;
|
||||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
||||||
|
|
||||||
namespace Cosmos.Core.Tests
|
namespace Cosmos.Core.Tests
|
||||||
{
|
{
|
||||||
[TestClass]
|
[TestFixture]
|
||||||
public class FieldOrderTests
|
public class FieldOrderTests
|
||||||
{
|
{
|
||||||
// the memory stuff requires DataLookupEntry.DataBlock to be the first field
|
// the memory stuff requires DataLookupEntry.DataBlock to be the first field
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue