本文整理汇总了C#中Account.Transfer方法的典型用法代码示例。如果您正苦于以下问题:C# Account.Transfer方法的具体用法?C# Account.Transfer怎么用?C# Account.Transfer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Account
的用法示例。
在下文中一共展示了Account.Transfer方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: NegativeAmount
public void NegativeAmount()
{
Account a = new Account(new Money(200m));
Account b = new Account();
Assert.Throws<InvalidAmountException>(() => a.Transfer(b, new Money(-100m)));
Assert.Equal(new Money(200m), a.Balance);
Assert.Equal(new Money(0m), b.Balance);
}
示例2: ValidTransfer
public void ValidTransfer()
{
Account a = new Account(new Money(200m));
Account b = new Account();
a.Transfer(b, new Money(200m));
Assert.Equal(new Money(0m), a.Balance);
Assert.Equal(new Money(200m), b.Balance);
}
示例3: InsufficientFunds
public void InsufficientFunds()
{
Account a = new Account(new Money(200m));
Account b = new Account();
Assert.Throws<InsufficientFundsException>(() => a.Transfer(b, new Money(300m)));
Assert.Equal(new Money(200m), a.Balance);
Assert.Equal(new Money(0m), b.Balance);
}