public void Withdraw_ShouldWithdrawIfAmoountUnderBalance(double ammount, double expected) { //Arrange //Act double actual = Withdraw.WithdrawMoney(ammount); //Assert Assert.Equal(expected, actual); }