def test_total_simple():
    counts = CharacterCounter("abC")
    assert counts.get_total() == 3
def test_total_special():
    counts = CharacterCounter("abc!")
    assert counts.get_total() == 3
def test_total_empty():
    counts = CharacterCounter("")
    assert counts.get_total() == 0