int? as a return type.Assert.Equal(null, parser.GetNumber(myArguments));xUnit2003: Do not use Assert. Equal() to check for null value. Use Assert.Null instead.Assert.Null(parser.GetNumber(myArguments));xUnit2002: Do not use Assert.Null() on value type 'int'. Remove this assert.