public void AccountState_CreateClosed_Created()
        {
            //Act
            var accountState = AccountState.CreateClosed();

            //Assert
            Assert.AreEqual(AccountState.AccountStateEnum.Closed, accountState.Value);
        }