8 references to CheckForEachCollectionConvertedType
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (8)
Compilation\SemanticModelGetSemanticInfoTests.cs (8)
6257CheckForEachCollectionConvertedType("int[]", "System.Int32[]", "System.Collections.IEnumerable");
6258CheckForEachCollectionConvertedType("int[,]", "System.Int32[,]", "System.Collections.IEnumerable");
6261CheckForEachCollectionConvertedType("string", "System.String", "System.String");
6264CheckForEachCollectionConvertedType("dynamic", "dynamic", "System.Collections.IEnumerable");
6267CheckForEachCollectionConvertedType("System.Collections.Generic.List<int>", "System.Collections.Generic.List<System.Int32>", "System.Collections.Generic.List<System.Int32>");
6270CheckForEachCollectionConvertedType("Enumerable", "Enumerable", "System.Collections.IEnumerable"); // helper method knows definition of this type
6273CheckForEachCollectionConvertedType("System.Collections.Generic.IEnumerable<int>", "System.Collections.Generic.IEnumerable<System.Int32>", "System.Collections.Generic.IEnumerable<System.Int32>");
6276CheckForEachCollectionConvertedType("NotAType", "NotAType", "NotAType"); // name not in scope