Files
rk35xx-android14/external/python/pyasn1/tests/base.py
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

24 lines
450 B
Python

#
# This file is part of pyasn1 software.
#
# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
try:
import unittest2 as unittest
except ImportError:
import unittest
from pyasn1 import debug
class BaseTestCase(unittest.TestCase):
def setUp(self):
debug.setLogger(debug.Debug('all', printer=lambda *x: None))
def tearDown(self):
debug.setLogger(None)