Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#297 - Possible inconsistency in test fixtures #298

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions tests/test_cas.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,39 +268,27 @@ def test_select_returns_feature_structures(cas_with_collections_xmi, typesystem_


def test_get_covered_text_tokens(tokens):
cas = Cas()
cas.sofa_string = "Joe waited for the train . The train was late ."

actual_text = [token.get_covered_text() for token in tokens]

expected_text = ["Joe", "waited", "for", "the", "train", ".", "The", "train", "was", "late", "."]
assert actual_text == expected_text


def test_FeatureStructure_get_covered_text_tokens(tokens):
cas = Cas()
cas.sofa_string = "Joe waited for the train . The train was late ."

actual_text = [token.get_covered_text() for token in tokens]

expected_text = ["Joe", "waited", "for", "the", "train", ".", "The", "train", "was", "late", "."]
assert actual_text == expected_text


def test_get_covered_text_sentences(sentences):
cas = Cas()
cas.sofa_string = "Joe waited for the train . The train was late ."

actual_text = [sentence.get_covered_text() for sentence in sentences]

expected_text = ["Joe waited for the train .", "The train was late ."]
assert actual_text == expected_text


def test_FeatureStructure_get_covered_text_sentences(sentences):
cas = Cas()
cas.sofa_string = "Joe waited for the train . The train was late ."

actual_text = [sentence.get_covered_text() for sentence in sentences]

expected_text = ["Joe waited for the train .", "The train was late ."]
Expand Down
Loading