public void AddCurrency_CreatesCurrency()
        {
            SetupTest();

            inventory.AddCurrency("test", 1);

            Assert.True(inventory.ContainsCurrency("test"));
        }