mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +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>
|
||||
</PropertyGroup>
|
||||
<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.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
|
|
|
|||
|
|
@ -3,12 +3,11 @@ using System.Linq;
|
|||
|
||||
using Cosmos.Debug.Common;
|
||||
using Cosmos.IL2CPU;
|
||||
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace Cosmos.Core.Tests
|
||||
{
|
||||
[TestClass]
|
||||
[TestFixture]
|
||||
public class FieldOrderTests
|
||||
{
|
||||
// the memory stuff requires DataLookupEntry.DataBlock to be the first field
|
||||
|
|
|
|||
Loading…
Reference in a new issue