public async Task PostObjectWithQueryAsync()
    {
        var result = await _controller.PostObjectWithQueryAsync(new Car { Year = 1976, Model = "Ford", FirstReleaseDate = new DateTime(1976, 02, 22, 15, 0, 6, 22) });

        result.Year.ShouldBe(1976);
        result.Model.ShouldBe("Ford");
    }
예제 #2
0
        public async Task PostObjectWithQueryAsync()
        {
            var result = await _controller.PostObjectWithQueryAsync(new Car { Year = 1976, Model = "Ford" });

            result.Year.ShouldBe(1976);
            result.Model.ShouldBe("Ford");
        }