File tree Expand file tree Collapse file tree 6 files changed +11
-11
lines changed Expand file tree Collapse file tree 6 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 80
80
<None Include =" packages.config" />
81
81
</ItemGroup >
82
82
<ItemGroup >
83
- <Compile Include =" pyinitialize.cs" />
84
83
<Compile Include =" dynamic.cs" />
85
84
<Compile Include =" pyimport.cs" />
86
- <Compile Include =" pyiter.cs" />
87
- <Compile Include =" pylong.cs" />
88
- <Compile Include =" pyobject.cs" />
85
+ <Compile Include =" pyinitialize.cs" />
89
86
<Compile Include =" pyrunstring.cs" />
90
- <Compile Include =" pythonexception.cs" />
91
- <Compile Include =" pytuple.cs" />
87
+ <Compile Include =" TestPyList.cs" />
88
+ <Compile Include =" TestPyLong.cs" />
89
+ <Compile Include =" TestPyString.cs" />
90
+ <Compile Include =" TestPythonException.cs" />
92
91
<Compile Include =" TestPythonEngineProperties.cs" />
92
+ <Compile Include =" TestPyTuple.cs" />
93
93
</ItemGroup >
94
94
<ItemGroup >
95
95
<ProjectReference Include =" ..\runtime\Python.Runtime.csproj" >
Original file line number Diff line number Diff line change 5
5
6
6
namespace Python . EmbeddingTest
7
7
{
8
- public class PyIterTest
8
+ public class TestPyList
9
9
{
10
10
[ Test ]
11
11
public void TestOnPyList ( )
Original file line number Diff line number Diff line change 4
4
5
5
namespace Python . EmbeddingTest
6
6
{
7
- public class PyLongTest
7
+ public class TestPyLong
8
8
{
9
9
[ Test ]
10
10
public void TestToInt64 ( )
Original file line number Diff line number Diff line change 4
4
5
5
namespace Python . EmbeddingTest
6
6
{
7
- public class PyObjectTest
7
+ public class TestPyString
8
8
{
9
9
[ Test ]
10
10
public void TestUnicode ( )
Original file line number Diff line number Diff line change 4
4
5
5
namespace Python . EmbeddingTest
6
6
{
7
- public class PyTupleTest
7
+ public class TestPyTuple
8
8
{
9
9
/// <summary>
10
10
/// Test IsTupleType without having to Initialize a tuple.
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ namespace Python.EmbeddingTest
11
11
/// Keeping this in the old-style SetUp/TearDown
12
12
/// to ensure that setup still works.
13
13
/// </remarks>
14
- public class PythonExceptionTest
14
+ public class TestPythonException
15
15
{
16
16
private IntPtr gs ;
17
17
You can’t perform that action at this time.
0 commit comments