Home | Trees | Indices | Help |
---|
|
1 import logging 2 import pytest5 """ 6 Base class for Tester classes used in QA 7 All test scripts should extend from this class 8 """ 9 logger = None 10 11 @classmethod 12 @pytest.fixture(scope='class', autouse=True)2514 """ 15 Class constructor. Overwrites Object's class 16 17 Args : 18 logName: (str) Name given to log that will be created upon running of your test. Usually named after the test. 19 20 Returns : null 21 22 Raises : null 23 """ 24 cls.logger = logging.getLogger("Tester")
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Tue Nov 05 17:17:49 2013 | http://epydoc.sourceforge.net |