9 lines
173 B
Python
9 lines
173 B
Python
|
|
import unittest
|
||
|
|
from opm.io import OpmLog
|
||
|
|
|
||
|
|
class TestLog(unittest.TestCase):
|
||
|
|
|
||
|
|
def test_log(self):
|
||
|
|
OpmLog.info("Info message")
|
||
|
|
OpmLog.debug("Debug message")
|