コード例 #1
0
ファイル: LoggerTest.py プロジェクト: mantidproject/mantid
    def test_unicode_logger(self):
        logger = Logger("LoggerTest")
        self.assertTrue(isinstance(logger, Logger))
        for att in ['fatal', 'error', 'warning', 'notice', 'information', 'debug']:
            if not hasattr(logger, att):
                self.fail("Logger object does not have the required attribute '%s'" % att)

        logger.fatal('This is a test')
        logger.error('This is a test')
        logger.warning('This is a test')
        logger.notice('This is a test')
        logger.information('This is a test')
        logger.debug('This is a test')
コード例 #2
0
    def test_unicode_logger(self):
        logger = Logger("LoggerTest")
        self.assertTrue(isinstance(logger, Logger))
        for att in ['fatal', 'error', 'warning', 'notice', 'information', 'debug']:
            if not hasattr(logger, att):
                self.fail("Logger object does not have the required attribute '%s'" % att)

        logger.fatal('This is a test')
        logger.error('This is a test')
        logger.warning('This is a test')
        logger.notice('This is a test')
        logger.information('This is a test')
        logger.debug('This is a test')
コード例 #3
0
ファイル: LoggerTest.py プロジェクト: stuartcampbell/mantid
    def test_unicode_logger(self):
        logger = Logger("LoggerTest")
        self.assertTrue(isinstance(logger, Logger))
        for att in [
                'fatal', 'error', 'warning', 'notice', 'information', 'debug',
                'flush', 'purge', 'accumulate', 'flushDebug',
                'flushInformation', 'flushNotice', 'flushWarning',
                'flushError', 'flushFatal'
        ]:
            if not hasattr(logger, att):
                self.fail(
                    "Logger object does not have the required attribute '%s'" %
                    att)

        logger.fatal('This is a test')
        logger.error('This is a test')
        logger.warning('This is a test')
        logger.notice('This is a test')
        logger.information('This is a test')
        logger.debug('This is a test')
        logger.purge()
        logger.accumulate('one')
        logger.accumulate('two')
        logger.flush()
        logger.accumulate('three')
        logger.flushDebug()
        logger.accumulate('four')
        logger.flushInformation()
        logger.accumulate('five')
        logger.flushNotice()
        logger.accumulate('six')
        logger.flushWarning()
        logger.accumulate('seven')
        logger.flushError()
        logger.accumulate('eight')
        logger.flushFatal()
        logger.purge()