8 references to CheckForEachCollectionConvertedType
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (8)
Compilation\SemanticModelGetSemanticInfoTests.cs (8)
6262CheckForEachCollectionConvertedType("int[]", "System.Int32[]", "System.Collections.IEnumerable");
6263CheckForEachCollectionConvertedType("int[,]", "System.Int32[,]", "System.Collections.IEnumerable");
6266CheckForEachCollectionConvertedType("string", "System.String", "System.String");
6269CheckForEachCollectionConvertedType("dynamic", "dynamic", "System.Collections.IEnumerable");
6272CheckForEachCollectionConvertedType("System.Collections.Generic.List<int>", "System.Collections.Generic.List<System.Int32>", "System.Collections.Generic.List<System.Int32>");
6275CheckForEachCollectionConvertedType("Enumerable", "Enumerable", "System.Collections.IEnumerable"); // helper method knows definition of this type
6278CheckForEachCollectionConvertedType("System.Collections.Generic.IEnumerable<int>", "System.Collections.Generic.IEnumerable<System.Int32>", "System.Collections.Generic.IEnumerable<System.Int32>");
6281CheckForEachCollectionConvertedType("NotAType", "NotAType", "NotAType"); // name not in scope