// ------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License (MIT). See LICENSE in the repo root for license information. // ------------------------------------------------------------ using System; using Microsoft.OData.Edm; using Xunit; namespace Microsoft.OpenApi.OData.Tests { public class OpenApiParameterGeneratorTest { [Fact] public void CreateParametersThrowArgumentNull() { // Arrange IEdmModel model = null; // Act & Assert Assert.Throws("model", () => model.CreateParameters()); } } }