public void split_logic2()
        {
            Card c1 = new Card(7, "7C");
            Card c2 = new Card(7, "DH");
            Player p = new Player();
            p.add_card(c1);
            p.add_card(c2);
            p.Player_Money = 0;
            p.bets[0] = 10;
            p.Player_Bet = 10;
            int expected_money = 0;
            int expected_total = 10;
            bool expected = false;

            //Act
            bool actual = p.split_logic();
            int actual_money = p.Player_Money;
            int actual_total = p.Player_Bet;

            Assert.AreEqual(expected_money, actual_money, "Player money should be 10");
            Assert.AreEqual(expected_total, actual_total, "Total player bet should be 10");
            Assert.AreEqual(expected, actual, "Player should not have another hand");
        }