We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0eb002 commit 01f4fffCopy full SHA for 01f4fff
unittests/test_smart_pointer.py
@@ -38,6 +38,18 @@ def test_smart_pointer(self):
38
declarations.smart_pointer_traits.is_smart_pointer(
39
decls[0].decl_type))
40
41
+ criteria = declarations.declaration_matcher(name="no1")
42
+ decls = declarations.matcher.find(criteria, self.global_ns)
43
+ self.assertFalse(
44
+ declarations.smart_pointer_traits.is_smart_pointer(
45
+ decls[0].decl_type))
46
+
47
+ criteria = declarations.declaration_matcher(name="no2")
48
49
50
51
52
53
def test_auto_pointer(self):
54
"""
55
Test auto_ptr_traits class.
0 commit comments