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