Esempio n. 1
0
class OutputAdapterTestCase(TestCase):
    """
    This test case is for the OutputAdapter base class.
    Although this class is not intended for direct use,
    this test case ensures that exceptions requiring
    basic functionality are triggered when needed.
    """
    def setUp(self):
        super(OutputAdapterTestCase, self).setUp()
        self.adapter = OutputAdapter()

    def test_process_response(self):
        with self.assertRaises(OutputAdapter.AdapterMethodNotImplementedError):
            self.adapter.process_response("")
class OutputAdapterTestCase(TestCase):
    """
    This test case is for the OutputAdapter base class.
    Although this class is not intended for direct use,
    this test case ensures that exceptions requiring
    basic functionality are triggered when needed.
    """

    def setUp(self):
        super(OutputAdapterTestCase, self).setUp()
        self.adapter = OutputAdapter()

    def test_process_response(self):
        with self.assertRaises(OutputAdapter.AdapterMethodNotImplementedError):
            self.adapter.process_response('', 0)
Esempio n. 3
0
 def setUp(self):
     super(OutputAdapterTestCase, self).setUp()
     self.adapter = OutputAdapter()
 def setUp(self):
     super(OutputAdapterTestCase, self).setUp()
     self.adapter = OutputAdapter()