class TestPreprocessor:
    def setup_method(self, method):
        self.processor = Preprocessor()

    def test_empty_str(self):
        assert '' == self.processor.process('')

    def test_trim_white_spaces(self):
        assert '' == self.processor.process('    ')
 def setup_method(self, method):
     self.processor = Preprocessor()