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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugh Bellamy <hughbellars@gmail.com>2016-05-17 20:01:08 +0300
committerHugh Bellamy <hughbellars@gmail.com>2016-05-19 23:44:51 +0300
commitc15d7579ab424b960e47ac7c8865fab35153145d (patch)
treef89119b0988976920677102ff5692e34eb5bd947 /src/System.Collections.NonGeneric/tests/System.Collections.NonGeneric.Tests.csproj
parent841fffb84ab23c8a442e87e9d7b61db1f738a963 (diff)
Add IDictionary tests for Hashtable
- Keys as ICollection - Values as ICollection - Actually use the `count` parameter for ICollection_NonGeneric_CopyTo_NonZeroLowerBound - Stricten the throw type for ICollection_NonGeneric_CopyTo_NonZeroLowerBound - Add an option to skip the ICollection_NonGeneric_CopyTo_NonZeroLowerBound test for HybridDictionary
Diffstat (limited to 'src/System.Collections.NonGeneric/tests/System.Collections.NonGeneric.Tests.csproj')
-rw-r--r--src/System.Collections.NonGeneric/tests/System.Collections.NonGeneric.Tests.csproj22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/System.Collections.NonGeneric/tests/System.Collections.NonGeneric.Tests.csproj b/src/System.Collections.NonGeneric/tests/System.Collections.NonGeneric.Tests.csproj
index 9387b77627..7c42240220 100644
--- a/src/System.Collections.NonGeneric/tests/System.Collections.NonGeneric.Tests.csproj
+++ b/src/System.Collections.NonGeneric/tests/System.Collections.NonGeneric.Tests.csproj
@@ -16,7 +16,29 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
</PropertyGroup>
<ItemGroup>
+ <!-- Common Collections tests -->
+ <Compile Include="$(CommonTestPath)\System\Collections\ICollection.NonGeneric.Tests.cs">
+ <Link>Common\System\Collections\ICollection.NonGeneric.Tests.cs</Link>
+ </Compile>
+ <Compile Include="$(CommonTestPath)\System\Collections\IDictionary.NonGeneric.Tests.cs">
+ <Link>Common\System\Collections\IDictionary.NonGeneric.Tests.cs</Link>
+ </Compile>
+ <Compile Include="$(CommonTestPath)\System\Collections\IEnumerable.NonGeneric.Tests.cs">
+ <Link>Common\System\Collections\IEnumerable.NonGeneric.Tests.cs</Link>
+ </Compile>
+ <Compile Include="$(CommonTestPath)\System\Collections\IList.NonGeneric.Tests.cs">
+ <Link>Common\System\Collections\IList.NonGeneric.Tests.cs</Link>
+ </Compile>
+ <Compile Include="$(CommonTestPath)\System\Collections\TestBase.NonGeneric.cs">
+ <Link>Common\System\Collections\TestBase.NonGeneric.cs</Link>
+ </Compile>
+ <Compile Include="$(CommonTestPath)\System\Collections\TestingTypes.cs">
+ <Link>Common\System\Collections\TestingTypes.cs</Link>
+ </Compile>
<Compile Include="ArrayListTests.cs" />
+ <Compile Include="Hashtable\Hashtable.Values.Tests.cs" />
+ <Compile Include="Hashtable\Hashtable.Keys.Tests.cs" />
+ <Compile Include="Hashtable\Hashtable.IDictionary.Tests.cs" />
<Compile Include="Helpers.cs" />
<Compile Include="CaseInsentiveComparerTests.cs" />
<Compile Include="CollectionBaseTests.cs" />