Skip to content

Commit 233a31c

Browse files
committed
add in C++ sdk tests
1 parent e6e3b51 commit 233a31c

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

tests/test_cxx_sdk_bindings.py

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#
2+
# Copyright Contributors to the OpenTimelineIO project
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "Apache License")
5+
# with the following modification; you may not use this file except in
6+
# compliance with the Apache License and the following modification to it:
7+
# Section 6. Trademarks. is deleted and replaced with:
8+
#
9+
# 6. Trademarks. This License does not grant permission to use the trade
10+
# names, trademarks, service marks, or product names of the Licensor
11+
# and its affiliates, except as required to comply with Section 4(c) of
12+
# the License and to reproduce the content of the NOTICE file.
13+
#
14+
# You may obtain a copy of the Apache License at
15+
#
16+
# http://www.apache.org/licenses/LICENSE-2.0
17+
#
18+
# Unless required by applicable law or agreed to in writing, software
19+
# distributed under the Apache License with the above modification is
20+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21+
# KIND, either express or implied. See the Apache License for the specific
22+
# language governing permissions and limitations under the Apache License.
23+
#
24+
25+
import unittest
26+
27+
import opentimelineio as otio
28+
29+
30+
class CxxSDKTests(unittest.TestCase):
31+
def test_cpp_big_ints(self):
32+
self.assertTrue(otio._otio._testing.test_big_uint())
33+
34+
if __name__ == '__main__':
35+
unittest.main()

0 commit comments

Comments
 (0)