Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/rocks
diff options
context:
space:
mode:
authorJb Evain <jbevain@gmail.com>2011-10-26 23:15:14 +0400
committerJb Evain <jbevain@gmail.com>2011-10-26 23:15:14 +0400
commitecdd7454b53a4d6b57c9eb2a500b91025a63b401 (patch)
tree9a03cf25209260f80b680d4da96b4874f0677efc /rocks
parent5f084446506a13d904183d5a3ebb35cdaa8fd566 (diff)
Update to nunit 2.5.10
Diffstat (limited to 'rocks')
-rw-r--r--rocks/Test/Mono.Cecil.Rocks.Tests.csproj12
-rw-r--r--rocks/Test/Mono.Cecil.Tests/TypeReferenceRocksTests.cs18
2 files changed, 15 insertions, 15 deletions
diff --git a/rocks/Test/Mono.Cecil.Rocks.Tests.csproj b/rocks/Test/Mono.Cecil.Rocks.Tests.csproj
index a8a8c91..3e7b8de 100644
--- a/rocks/Test/Mono.Cecil.Rocks.Tests.csproj
+++ b/rocks/Test/Mono.Cecil.Rocks.Tests.csproj
@@ -51,17 +51,17 @@
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
</PropertyGroup>
<ItemGroup>
- <Reference Include="nunit.core, Version=2.4.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
+ <Reference Include="nunit.core, Version=2.5.10.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\Test\libs\nunit-2.4.8\nunit.core.dll</HintPath>
+ <HintPath>..\..\Test\libs\nunit-2.5.10\nunit.core.dll</HintPath>
</Reference>
- <Reference Include="nunit.core.interfaces, Version=2.4.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
+ <Reference Include="nunit.core.interfaces, Version=2.5.10.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\Test\libs\nunit-2.4.8\nunit.core.interfaces.dll</HintPath>
+ <HintPath>..\..\Test\libs\nunit-2.5.10\nunit.core.interfaces.dll</HintPath>
</Reference>
- <Reference Include="nunit.framework, Version=2.4.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
+ <Reference Include="nunit.framework, Version=2.5.10.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\Test\libs\nunit-2.4.8\nunit.framework.dll</HintPath>
+ <HintPath>..\..\Test\libs\nunit-2.5.10\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core">
diff --git a/rocks/Test/Mono.Cecil.Tests/TypeReferenceRocksTests.cs b/rocks/Test/Mono.Cecil.Tests/TypeReferenceRocksTests.cs
index 3845eaa..9f51cb6 100644
--- a/rocks/Test/Mono.Cecil.Tests/TypeReferenceRocksTests.cs
+++ b/rocks/Test/Mono.Cecil.Tests/TypeReferenceRocksTests.cs
@@ -16,7 +16,7 @@ namespace Mono.Cecil.Tests {
var string_array = @string.MakeArrayType ();
- Assert.IsInstanceOfType (typeof (ArrayType), string_array);
+ Assert.IsInstanceOf (typeof (ArrayType), string_array);
Assert.AreEqual (1, string_array.Rank);
}
@@ -27,7 +27,7 @@ namespace Mono.Cecil.Tests {
var string_array = @string.MakeArrayType (3);
- Assert.IsInstanceOfType (typeof (ArrayType), string_array);
+ Assert.IsInstanceOf (typeof (ArrayType), string_array);
Assert.AreEqual (3, string_array.Rank);
}
@@ -38,7 +38,7 @@ namespace Mono.Cecil.Tests {
var string_ptr = @string.MakePointerType ();
- Assert.IsInstanceOfType (typeof (PointerType), string_ptr);
+ Assert.IsInstanceOf (typeof (PointerType), string_ptr);
}
[Test]
@@ -48,7 +48,7 @@ namespace Mono.Cecil.Tests {
var string_byref = @string.MakeByReferenceType ();
- Assert.IsInstanceOfType (typeof (ByReferenceType), string_byref);
+ Assert.IsInstanceOf (typeof (ByReferenceType), string_byref);
}
class OptionalModifier {}
@@ -61,7 +61,7 @@ namespace Mono.Cecil.Tests {
var string_modopt = @string.MakeOptionalModifierType (modopt);
- Assert.IsInstanceOfType (typeof (OptionalModifierType), string_modopt);
+ Assert.IsInstanceOf (typeof (OptionalModifierType), string_modopt);
Assert.AreEqual (modopt, string_modopt.ModifierType);
}
@@ -75,7 +75,7 @@ namespace Mono.Cecil.Tests {
var string_modreq = @string.MakeRequiredModifierType (modreq);
- Assert.IsInstanceOfType (typeof (RequiredModifierType), string_modreq);
+ Assert.IsInstanceOf (typeof (RequiredModifierType), string_modreq);
Assert.AreEqual (modreq, string_modreq.ModifierType);
}
@@ -86,7 +86,7 @@ namespace Mono.Cecil.Tests {
var pinned_byte_array = byte_array.MakePinnedType ();
- Assert.IsInstanceOfType (typeof (PinnedType), pinned_byte_array);
+ Assert.IsInstanceOf (typeof (PinnedType), pinned_byte_array);
}
[Test]
@@ -96,7 +96,7 @@ namespace Mono.Cecil.Tests {
var string_sentinel = @string.MakeSentinelType ();
- Assert.IsInstanceOfType (typeof (SentinelType), string_sentinel);
+ Assert.IsInstanceOf (typeof (SentinelType), string_sentinel);
}
class Foo<T1, T2> {}
@@ -110,7 +110,7 @@ namespace Mono.Cecil.Tests {
var foo_string_int = foo.MakeGenericInstanceType (@string, @int);
- Assert.IsInstanceOfType (typeof (GenericInstanceType), foo_string_int);
+ Assert.IsInstanceOf (typeof (GenericInstanceType), foo_string_int);
Assert.AreEqual (2, foo_string_int.GenericArguments.Count);
Assert.AreEqual (@string, foo_string_int.GenericArguments [0]);
Assert.AreEqual (@int, foo_string_int.GenericArguments [1]);