コード例 #1
0
ファイル: Scenes.py プロジェクト: Loremipsum1988/tinkervision
    def setUpClass(cls):
        cls.name = "Scenes"

        cls.mod_name1 = "downscale"
        cls.mod_name2 = "snapshot"

        cls.module1 = Helper.start_module(cls.mod_name1)
        cls.module2 = Helper.start_module(cls.mod_name2)

        print "[" + cls.name + "] Starting Tests."
        Helper.show_running_modules(cls.name)
コード例 #2
0
ファイル: Scenes.py プロジェクト: Loremipsum1988/tinkervision
    def setUpClass(cls):
        cls.name = "Scenes"

        cls.mod_name1 = "downscale"
        cls.mod_name2 = "snapshot"

        cls.module1 = Helper.start_module(cls.mod_name1)
        cls.module2 = Helper.start_module(cls.mod_name2)

        print "[" + cls.name + "] Starting Tests."
        Helper.show_running_modules(cls.name)
コード例 #3
0
ファイル: Stream.py プロジェクト: Loremipsum1988/tinkervision
    def setUpClass(cls):
        cls.name = "stream"

        cls.module = Helper.start_module(cls.name)
        print "[" + cls.name + "] Starting Tests."
        Helper.show_running_modules(cls.name)
コード例 #4
0
 def setUpClass(cls):
     cls.name = "snapshot"
     cls.module = Helper.start_module(cls.name)
     print "[" + cls.name + "] Starting Tests."
     Helper.show_running_modules(cls.name)
コード例 #5
0
ファイル: Module.py プロジェクト: Loremipsum1988/tinkervision
 def setUpClass(cls):
     cls.name = "Module"
     cls.mod_name = "motiondetect"
     cls.module = Helper.start_module(cls.mod_name)
     print "[" + cls.name + "] Starting Tests."
     Helper.show_running_modules(cls.name)
コード例 #6
0
ファイル: _Dummy.py プロジェクト: Loremipsum1988/tinkervision
 def setUpClass(cls):
     cls.name = "NAMEHERE"  # Insert Name <---------------------------------------------------------------------------
     cls.module = Helper.start_module(cls.name)
     print "[" + cls.name + "] Starting Tests."
     Helper.show_running_modules(cls.name)
コード例 #7
0
ファイル: _Dummy.py プロジェクト: Loremipsum1988/tinkervision
 def setUpClass(cls):
     cls.name = "NAMEHERE"  # Insert Name <---------------------------------------------------------------------------
     cls.module = Helper.start_module(cls.name)
     print "[" + cls.name + "] Starting Tests."
     Helper.show_running_modules(cls.name)
コード例 #8
0
ファイル: Module.py プロジェクト: Loremipsum1988/tinkervision
 def setUpClass(cls):
     cls.name = "Module"
     cls.mod_name = "motiondetect"
     cls.module = Helper.start_module(cls.mod_name)
     print "[" + cls.name + "] Starting Tests."
     Helper.show_running_modules(cls.name)