class TestHPEndToEnd(unittest.TestCase):

    def setUp(self):
        self.input_file_correct = '0180919_143055__j1__e010__t100__dc_list1.txt'
        self.main_class = HyperProfiling()

    def test_end_to_end(self):

        self.main_class.classify_data(self.input_file_correct)
Esempio n. 2
0
# -*- coding: utf-8 -*-
"""
Instantiate HyperProfiling class, and run data classification method from class.
Author: Dan Grebenisan
Updated on: 09/26/2018
"""

import sys
from hyper_profiling_1_1 import HyperProfiling

file_name = sys.argv[1]
classify = HyperProfiling()
print(repr(classify))
classify.classify_data(file_name)