public static void RegisterGet_Validates_Parameters_For_Null()
    {
        // Arrange
        HttpClientInterceptorOptions options = null;

        // Act and Assert
        Should.Throw <ArgumentNullException>(() => options.RegisterGet("https://google.com", string.Empty), "options");
    }