Skip to content

Commit

Permalink
Cyber: Implement py3_init test script.
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoxq committed Nov 7, 2019
1 parent 7a37c8a commit 895e102
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions cyber/python/test/test_init_py3.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#!/usr/bin/env python3

# ****************************************************************************
# Copyright 2019 The Apollo Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ****************************************************************************
# -*- coding: utf-8 -*-
"""Module for test init."""

import sys
import unittest

sys.path.append("../")
from cyber_py import cyber_py3 as cyber


class TestInit(unittest.TestCase):

"""
Class for init unit test.
"""

def test_init(self):
"""
Test cyber.
"""
self.assertTrue(cyber.init())
self.assertTrue(cyber.ok())
cyber.shutdown()
self.assertTrue(cyber.is_shutdown())

if __name__ == '__main__':
unittest.main()

0 comments on commit 895e102

Please sign in to comment.