Acme.Biz.Tests.VendorTests.PlaceOrder_NullProduct_Exception C# (CSharp) Method

PlaceOrder_NullProduct_Exception() private method

private PlaceOrder_NullProduct_Exception ( ) : void
return void
        public void PlaceOrder_NullProduct_Exception()
        {
            // Arrange
            var vendor = new Vendor();

            // Act
            var actual = vendor.PlaceOrder(null, 12);

            // Assert
            // Expected exception
        }