-
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.
- Loading branch information
Showing
4 changed files
with
31 additions
and
23 deletions.
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
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 |
---|---|---|
@@ -1,9 +1,24 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
import pytests | ||
import unittest | ||
|
||
from src.datagatherer import DataGatherer | ||
from octopy_predictor.src.datagatherer import DataGatherer | ||
|
||
def test_determine_resource(): | ||
dg = DataGatherer() | ||
assert(dg is not None) | ||
class DataGathererTest(unittest.TestCase): | ||
"""Test cases for Analyser""" | ||
|
||
def setUp(self): | ||
self.datagatherer = DataGatherer() | ||
|
||
def test_determine_resource(self): | ||
""" | ||
TBD | ||
""" | ||
self.assertEquals(1,1) | ||
|
||
|
||
|
||
if __name__ == '__main__': | ||
# unittest.main() | ||
suite = unittest.defaultTestLoader.loadTestsFromTestCase(DataGathererTest) | ||
unittest.TextTestRunner().run(suite) |
This file was deleted.
Oops, something went wrong.