8 writes to Namespace
Microsoft.VisualStudio.LanguageServices.UnitTests (8)
CodeModel\CSharp\FileCodeModelTests.vb (4)
606Await TestAddImport(code, expected, New ImportData With {.[Namespace] = "System"}) 627Await TestAddImport(code, expected, New ImportData With {.[Namespace] = "System", .Alias = "S"}) 651Await TestAddImport(code, expected, New ImportData With {.[Namespace] = "System"}) 675Await TestAddImport(code, expected, New ImportData With {.[Namespace] = "System", .Position = -1})
CodeModel\VisualBasic\FileCodeModelTests.vb (4)
590Await TestAddImport(code, expected, New ImportData With {.[Namespace] = "System"}) 608Await TestAddImport(code, expected, New ImportData With {.[Namespace] = "System", .Alias = "S"}) 630Await TestAddImport(code, expected, New ImportData With {.[Namespace] = "System"}) 652Await TestAddImport(code, expected, New ImportData With {.[Namespace] = "System", .Position = -1})
2 references to Namespace
Microsoft.VisualStudio.LanguageServices.UnitTests (2)
CodeModel\AbstractFileCodeModelTests.vb (2)
120Dim newImport = fileCodeModel.AddImport(data.Namespace, data.Position, data.Alias) 122Assert.Equal(data.Namespace, newImport.Namespace)