3 instantiations of TestableCompilerFile
Microsoft.CodeAnalysis.Test.Utilities (3)
TestableCompiler.cs (3)
80
return new
TestableCompilerFile
(filePath, file);
88
return new
TestableCompilerFile
(filePath, file);
96
return new
TestableCompilerFile
(filePath, file);
9 references to TestableCompilerFile
Microsoft.CodeAnalysis.Rebuild.UnitTests (6)
BasicDeterministicKeyBuilderTests.cs (3)
310
var
sourceFile = compiler.AddSourceFile("test.vb", @"' this is a test file");
312
var
pdbFile = compiler.AddOutputFile("test.pdb");
313
var
keyFile = compiler.AddOutputFile("test.dll.key");
CSharpDeterministicKeyBuilderTests.cs (3)
494
var
sourceFile = compiler.AddSourceFile("test.cs", @"// this is a test file");
496
var
pdbFile = compiler.AddOutputFile("test.pdb");
497
var
keyFile = compiler.AddOutputFile("test.dll.key");
Microsoft.CodeAnalysis.Test.Utilities (3)
TestableCompiler.cs (3)
75
internal
TestableCompilerFile
AddSourceFile(string filePath, string content)
83
internal
TestableCompilerFile
AddReference(string filePath, byte[] imageBytes)
91
internal
TestableCompilerFile
AddOutputFile(string filePath)