def test_split_text_with_brackets(self):
        text = '''
meeting and the public is welcomed to weigh in on these throughout the budget process.    Fish: Aye.  Leonard: Aye.  Saltzman: Aye.    Adams: Aye 60 is approved.  [gavel pounded] please read the title for emergency ordinance number 61. Item 61.    Adams: Commissioner Fritz.  Fritz: thank you, mayor.  I'm pleased to bring before council an audit settlement with mci metro negotiated by our office of cable communication and franchise management in cooperation with the city attorney's office, it was based on a well-done audit pursuant to an ongoing successfu '''
        convos = split_statements_from_discussion(text)
        speakers = set()
        for c in convos:
            speakers.add(c[0].strip())
            print('{}->"{}"'.format(c[0].strip(), c[1].strip()))
        
        self.assertTrue("Saltzman" in speakers)
        self.assertTrue("Fritz" in speakers)
        self.assertTrue("Adams" in speakers)
    def test_split_text(self):
        text = '''operating much more efficiently.    Fritz: So the projection is for --   Adams: If I can add on to that.  The greater sales effort to businesses, to sign up for validation, means more uses of the garage, so aggressive sales pitch to businesses has the opportunity in increasing the -- increasing the validation program has the opportunity to bring in more revenue.    Fritz: And --   Geason:  And the cost in the garage will be done with the use of technology.    Fritz: We're not projecting to increase the parking fees?   Geason:  Not at this time.    Fritz: The projection is for $11 million a year in revenue.  How much do we currently get?   Geason: $10 million.    Fritz: About an million increase.  Thank you.  We have had a discussion when reviewing the handy capped permits, but the possibility of allowing the use of handy capped spaces to be used without '''

        convos = split_statements_from_discussion(text)

        #print("Statements found: {}".format(convos[:5]))
        speakers = set()
        print('\n\n')
        for c in convos:
            speakers.add(c[0].strip())
            print('{}->"{}"'.format(c[0].strip(), c[1].strip()))
        #self.assertEqual(len(convos), 100)
        self.assertTrue("Fritz" in speakers)
        self.assertTrue("Adams" in speakers)