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
33 lines (30 loc) · 786 Bytes
/
StatusTest.cs
File metadata and controls
33 lines (30 loc) · 786 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
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using Tensorflow;
namespace TensorFlowNET.UnitTest.Basics
{
[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();
}
}
}