aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/platform/default/logging_test.py
blob: fd492bc38473a5e0281a2e29761b77bd8a0b0441 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from tensorflow.python.platform.default import _googletest as googletest
from tensorflow.python.platform.default import _logging as logging


class EventLoaderTest(googletest.TestCase):

  def test_log(self):
    # Just check that logging works without raising an exception.
    logging.error("test log message")


if __name__ == "__main__":
  googletest.main()