C#: Add tests for names of nested classes

This commit is contained in:
Koen Vlaswinkel 2023-06-28 09:40:31 +02:00
Родитель 6812389fc8
Коммит e4d2c51ff8
3 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -25,4 +25,10 @@ public class LibraryUsage
{
var guid1 = Guid.Parse("{12345678-1234-1234-1234-123456789012}"); // Has no flow summary
}
public void M4()
{
var d = new Dictionary<string, object>(); // Uninteresting parameterless constructor
var e = d.Keys.GetEnumerator().MoveNext(); // Methods on nested classes
}
}

Просмотреть файл

@ -1,2 +1,2 @@
| System | 5 |
| System.Collections.Generic | 2 |
| System.Collections.Generic | 5 |

Просмотреть файл

@ -1 +1,3 @@
| System.Collections.Generic#List<>.Add(T) | 2 |
| System.Collections.Generic#Dictionary<,>+KeyCollection.GetEnumerator() | 1 |
| System.Collections.Generic#Dictionary<,>.get_Keys() | 1 |