Arc.Unit.Tests.Domain.Units.MoneyTests.Money_should_be_greater_than_or_equal_to_other_money_when_amount_is_greater_or_equal C# (CSharp) Method

Money_should_be_greater_than_or_equal_to_other_money_when_amount_is_greater_or_equal() private method

        public void Money_should_be_greater_than_or_equal_to_other_money_when_amount_is_greater_or_equal()
        {
            Assert.That(MoneyFactory.OneEUR >= MoneyFactory.ZeroEUR, Is.True);
            Assert.That(MoneyFactory.OneEUR >= MoneyFactory.OneEUR, Is.True);
            Assert.That(MoneyFactory.ZeroEUR >= MoneyFactory.OneEUR, Is.False);
        }