Fix(Content): Corrected file and project references in README.

This commit is contained in:
2025-02-26 12:53:05 +00:00
parent 9a411dd56e
commit 7df2642002
8 changed files with 94 additions and 7 deletions

19
tests/all_tests.py Normal file
View File

@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
"""
@author: Edward Middleton-Smith
"""
from end_to_end_test_alphabet_level_translation import test_alphabet_level_translation
from end_to_end_test_simple_word_and_groupsigns_level_translation import test_simple_words_and_groupsigns_level_translation
from end_to_end_test_lower_contractions_level_translation import test_lower_contractions_level_translation
from integration_test_get_all_characters import test_get_all_characters
if __name__ == "__main__":
# Integration test
test_get_all_characters()
# End to end tests
test_alphabet_level_translation()
test_simple_words_and_groupsigns_level_translation()
test_lower_contractions_level_translation()