8 writes to Namespace
Microsoft.VisualStudio.LanguageServices.UnitTests (8)
CodeModel\CSharp\FileCodeModelTests.vb (4)
603Await TestAddImport(code, expected, New ImportData With {.[Namespace] = "System"}) 624Await TestAddImport(code, expected, New ImportData With {.[Namespace] = "System", .Alias = "S"}) 648Await TestAddImport(code, expected, New ImportData With {.[Namespace] = "System"}) 672Await TestAddImport(code, expected, New ImportData With {.[Namespace] = "System", .Position = -1})
CodeModel\VisualBasic\FileCodeModelTests.vb (4)
587Await TestAddImport(code, expected, New ImportData With {.[Namespace] = "System"}) 605Await TestAddImport(code, expected, New ImportData With {.[Namespace] = "System", .Alias = "S"}) 627Await TestAddImport(code, expected, New ImportData With {.[Namespace] = "System"}) 649Await TestAddImport(code, expected, New ImportData With {.[Namespace] = "System", .Position = -1})
2 references to Namespace
Microsoft.VisualStudio.LanguageServices.UnitTests (2)
CodeModel\AbstractFileCodeModelTests.vb (2)
119Dim newImport = fileCodeModel.AddImport(data.Namespace, data.Position, data.Alias) 121Assert.Equal(data.Namespace, newImport.Namespace)