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

        result.Year.ShouldBe(42);
        result.Model.ShouldBe("Ford");
    }
Exemplo n.º 2
0
        public async Task GetObjectAndIdWithQueryAsync()
        {
            var result = await _controller.GetObjectAndIdWithQueryAsync(42, new Car { Year = 1976, Model = "Ford" });

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