-
Notifications
You must be signed in to change notification settings - Fork 774
Expand file tree
/
Copy pathReferences.cs
More file actions
35 lines (32 loc) · 974 Bytes
/
References.cs
File metadata and controls
35 lines (32 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
namespace Python.EmbeddingTest
{
using NUnit.Framework;
using Python.Runtime;
public class References
{
[Test]
public void MoveToPyObject_SetsNull()
{
var dict = new PyDict();
NewReference reference = Runtime.PyDict_Items(dict.Reference);
try
{
Assert.That(reference.IsNull(), Is.False);
using (reference.MoveToPyObject())
Assert.That(reference.IsNull(), Is.True);
}
finally
{
reference.Dispose();
}
}
[Test]
public void CanBorrowFromNewReference()
{
var dict = new PyDict();
using NewReference reference = Runtime.PyDict_Items(dict.Reference);
BorrowedReference borrowed = reference.BorrowOrThrow();
PythonException.ThrowIfIsNotZero(Runtime.PyList_Reverse(borrowed));
}
}
}