~ubuntu-branches/debian/stretch/protobuf/stretch

« back to all changes in this revision

Viewing changes to python/google/protobuf/internal/service_reflection_test.py

  • Committer: Package Import Robot
  • Author(s): Robert S. Edmonds
  • Date: 2014-09-11 22:50:10 UTC
  • mfrom: (10.1.9 experimental)
  • Revision ID: package-import@ubuntu.com-20140911225010-wt4yo9dpc1fzuq5g
Tags: 2.6.0-3
Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
__author__ = 'petar@google.com (Petar Petrov)'
36
36
 
37
 
import unittest
 
37
from google.apputils import basetest
38
38
from google.protobuf import unittest_pb2
39
39
from google.protobuf import service_reflection
40
40
from google.protobuf import service
41
41
 
42
42
 
43
 
class FooUnitTest(unittest.TestCase):
 
43
class FooUnitTest(basetest.TestCase):
44
44
 
45
45
  def testService(self):
46
46
    class MockRpcChannel(service.RpcChannel):
133
133
 
134
134
 
135
135
if __name__ == '__main__':
136
 
  unittest.main()
 
136
  basetest.main()