9 writes to FileGuidByte
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (9)
LexicalAndXml\PreprocessorTests.cs (9)
4135FileGuidByte = new string[] { file, guid, bytes } 4153FileGuidByte = new string[] { file, guid, null } 4170FileGuidByte = new string[] { file, null, null } 4185FileGuidByte = new string[] { null, null, null } 4203FileGuidByte = new string[] { file, guid, bytes } 4222FileGuidByte = new string[] { file, guid, bytes } 4242FileGuidByte = new string[] { file, guid, bytes } 4262FileGuidByte = new string[] { file, null/*guid*/, null/*bytes*/ } 4287FileGuidByte = new string[] { file, guid, bytes }
7 references to FileGuidByte
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (7)
LexicalAndXml\PreprocessorTests.cs (7)
361Assert.Equal(3, expected.FileGuidByte.Length); 362if (expected.FileGuidByte[0] == null) 367Assert.Equal(expected.FileGuidByte[0], pcd.File.Value); 368if (expected.FileGuidByte[1] == null) 373Assert.Equal(expected.FileGuidByte[1], pcd.Guid.Value); 374if (expected.FileGuidByte[2] == null) 379Assert.Equal(expected.FileGuidByte[2], pcd.Bytes.Value);