generated from amosproj/amos202Xss0Y-projname
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Deniz Deli <d.deli@campus.tu-berlin.de>
- Loading branch information
Showing
2 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
"""Main unit test module.""" | ||
|
||
from metadata_analyzer.main import hello_world, update_data | ||
from metadata_analyzer.analyzer import Analyzer | ||
from metadata_analyzer.models import Result | ||
from metadata_analyzer.simple_rule_based_analyzer import SimpleRuleBasedAnalyzer | ||
from datetime import datetime | ||
from tests.mock_backend import MockBackend | ||
from tests.mock_database import MockDatabase | ||
|
||
def test_force_fail(): | ||
"""Force failing test""" | ||
assert False | ||
|
||
# def test_force_fail(): | ||
# """Force passing test""" | ||
# assert True |