15 references to getCommonValue
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (15)
Attributes\AttributeTests_NullableContext.cs (15)
392Assert.Null(getCommonValue()); 393Assert.Equal((byte)0, getCommonValue(0)); 394Assert.Equal((byte)1, getCommonValue(1)); 395Assert.Equal((byte)2, getCommonValue(2)); 396Assert.Equal((byte)3, getCommonValue(3)); 397Assert.Equal((byte)0, getCommonValue(0, 0)); 398Assert.Null(getCommonValue(0, 1)); 399Assert.Null(getCommonValue(1, 0)); 400Assert.Equal((byte)1, getCommonValue(1, 1)); 401Assert.Null(getCommonValue(1, 2)); 402Assert.Equal((byte)2, getCommonValue(2, 2)); 403Assert.Null(getCommonValue(0, 1, 0)); 404Assert.Null(getCommonValue(1, 0, 1)); 405Assert.Null(getCommonValue(2, 2, 1)); 406Assert.Equal((byte)3, getCommonValue(3, 3, 3));