Acme.Biz.Tests.VendorTests.PlaceOrder_NullProduct_Exception C# (CSharp) 메소드

PlaceOrder_NullProduct_Exception() 개인적인 메소드

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

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

            // Assert
            // Expected exception
        }