1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 07:36:14 -05:00

Address Analyzer Warnings (#2078)

* Address potential errors

* Add tests

* Add clarity

* Run formatting
This commit is contained in:
Justin Baur
2022-06-28 12:17:14 -04:00
committed by GitHub
parent 9ff071e926
commit cc21a04801
5 changed files with 141 additions and 4 deletions

View File

@ -0,0 +1,23 @@
using Bit.Core.Models.Business;
using Xunit;
namespace Bit.Core.Test.Models.Business
{
public class BillingInfoTests
{
[Fact]
public void BillingInvoice_Amount_ShouldComeFrom_InvoiceTotal()
{
var invoice = new Stripe.Invoice
{
AmountDue = 1000,
Total = 2000,
};
var billingInvoice = new BillingInfo.BillingInvoice(invoice);
// Should have been set from Total
Assert.Equal(20M, billingInvoice.Amount);
}
}
}