forked from SciSharp/TensorFlow.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStatusTest.cs
More file actions
36 lines (33 loc) · 857 Bytes
/
StatusTest.cs
File metadata and controls
36 lines (33 loc) · 857 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
36
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Text;
using Tensorflow;
namespace TensorFlowNET.UnitTest
{
[TestClass]
public class StatusTest
{
[TestMethod]
public void NewStatus()
{
var s = new Status();
Assert.AreEqual(s.Code, TF_Code.TF_OK);
Assert.AreEqual(s.Message, String.Empty);
}
[TestMethod]
public void SetStatus()
{
var s = new Status();
s.SetStatus(TF_Code.TF_CANCELLED, "cancel");
Assert.AreEqual(s.Code, TF_Code.TF_CANCELLED);
Assert.AreEqual(s.Message, "cancel");
}
[TestMethod]
public void DeleteStatus()
{
var s = new Status();
s.Dispose();
}
}
}