@@ -11,6 +11,9 @@ class TestOrderAnalyser(unittest.TestCase):
"""Test case for the OrderAnalyser Class"""
+ def setUp(self):
+ pass
+
def test_is_containing_bracket(self):
# Success
order_to_test = "This test contains {{ bracket }}"
@@ -12,6 +12,7 @@ from core.Models.Tts import Tts
class TestSettingLoader(unittest.TestCase):
def setUp(self):
self.settings_file_to_test = "core/Tests/settings/settings_test.yml"
self.settings_dict = {
@@ -8,6 +8,9 @@ class TestYAMLLoader(unittest.TestCase):
Class to test YAMLLoader
"""
def test_get_config(self):
valid_file_path_to_test = "core/Tests/brains/brain_test.yml"
@@ -4,13 +4,8 @@ import collections
from threading import Thread
import pyaudio
-import sys
-
-import signal
import snowboydetect
import time
-import wave
import os
import logging