|
@@ -121,16 +121,21 @@ class TestSt:
|
|
|
self.message_receiver(message, *args)
|
|
|
|
|
|
def test_on_start(self, message, *args):
|
|
|
- print("test_on_start:{}".format(message))
|
|
|
+ # print("test_on_start:{}".format(message))
|
|
|
+ pass
|
|
|
|
|
|
def test_on_error(self, message, *args):
|
|
|
- print("on_error args=>{}".format(args))
|
|
|
+ # print("on_error args=>{}".format(args))
|
|
|
+ pass
|
|
|
|
|
|
def test_on_close(self, *args):
|
|
|
- print("on_close: args=>{}".format(args))
|
|
|
+ # print("on_close: args=>{}".format(args))
|
|
|
+ pass
|
|
|
|
|
|
def test_on_result_chg(self, message, *args):
|
|
|
- print("test_on_chg:{}".format(message))
|
|
|
+ # print("test_on_chg:{}".format(message))
|
|
|
+ pass
|
|
|
|
|
|
def test_on_completed(self, message, *args):
|
|
|
- print("on_completed:args=>{} message=>{}".format(args, message))
|
|
|
+ # print("on_completed:args=>{} message=>{}".format(args, message))
|
|
|
+ pass
|