public void SimpleBankingAppTest_BuildBankWithAccounts_AccountCreatedWithoutOwner()
        {
            //Arrange
            //Build Bank
            Bank testBank = BuildBank();

            BuildBankAccountList(ref testBank);

            //Output
            Debug.SetMethodName(MethodBase.GetCurrentMethod().Name.ToString());

            //Act
            //All default constructors are inaccessible
            AccountOwner owner1 = new AccountOwner(Guid.NewGuid().ToString(), "Washington", "George");

            //acct.Checking acctcx1 = new acct.Checking();
            acct.Checking acctcx2 = new acct.Checking("0000000001cx", Guid.NewGuid().ToString(), "Washington", "George", 1.00m);
            acct.Checking acctcx3 = new acct.Checking(Guid.NewGuid().ToString(), owner1, 1.00m);

            //All default constructors are inaccessible
            //acct.CorporateInvestment acctci1 = new acct.CorporateInvestment();
            acct.CorporateInvestment acctci2 = new acct.CorporateInvestment(Guid.NewGuid().ToString(), Guid.NewGuid().ToString(), "Washington", "George", 1.00m);
            acct.CorporateInvestment acctci3 = new acct.CorporateInvestment(Guid.NewGuid().ToString(), owner1, 1.00m);

            //All default constructors are inaccessible
            //acct.IndividualInvestment acctii1 = new acct.IndividualInvestment();
            acct.IndividualInvestment acctii2 = new acct.IndividualInvestment(Guid.NewGuid().ToString(), Guid.NewGuid().ToString(), "Washington", "George", 1.00m);
            acct.IndividualInvestment acctii3 = new acct.IndividualInvestment(Guid.NewGuid().ToString(), owner1, 1.00m);

            //Output
            Debug.WriteLine(owner1.ToString());
            Debug.WriteLine(acctcx2.ToString());
            Debug.WriteLine(acctcx3.ToString());
            Debug.WriteLine(acctci2.ToString());
            Debug.WriteLine(acctci3.ToString());
            Debug.WriteLine(acctii2.ToString());
            Debug.WriteLine(acctii3.ToString());

            //Assert
            //All accounts are succesfully built, resulting in a true assertion
            Assert.IsTrue(true);
        }