mirror of
https://github.com/pybind/pybind11.git
synced 2026-05-12 01:10:34 +00:00
32 lines
757 B
Python
32 lines
757 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from pybind11_tests import class_sh_with_alias as m
|
|
|
|
|
|
class PyDrvd(m.Abase):
|
|
def __init__(self, val):
|
|
super(PyDrvd, self).__init__(val)
|
|
|
|
def Add(self, other_val):
|
|
return self.Get() * 100 + other_val
|
|
|
|
|
|
def test_drvd_add():
|
|
drvd = PyDrvd(74)
|
|
assert drvd.Add(38) == (74 * 10 + 3) * 100 + 38
|
|
|
|
|
|
def test_add_in_cpp_raw_ptr():
|
|
drvd = PyDrvd(52)
|
|
assert m.AddInCppRawPtr(drvd, 27) == ((52 * 10 + 3) * 100 + 27) * 10 + 7
|
|
|
|
|
|
def test_add_in_cpp_shared_ptr():
|
|
drvd = PyDrvd(36)
|
|
assert m.AddInCppSharedPtr(drvd, 56) == ((36 * 10 + 3) * 100 + 56) * 100 + 11
|
|
|
|
|
|
def test_add_in_cpp_unique_ptr():
|
|
drvd = PyDrvd(38)
|
|
assert m.AddInCppUniquePtr(drvd, 29) == ((38 * 10 + 3) * 100 + 29) * 100 + 13
|