@@ -4,7 +4,7 @@ using System.Collections.Generic; | |||||
namespace Tensorflow.Native.UnitTest.Sessions | namespace Tensorflow.Native.UnitTest.Sessions | ||||
{ | { | ||||
[TestClass, Ignore] | |||||
[TestClass] | |||||
public class SessionTest : CApiTest | public class SessionTest : CApiTest | ||||
{ | { | ||||
/// <summary> | /// <summary> | ||||
@@ -1,12 +1,14 @@ | |||||
using Microsoft.VisualStudio.TestTools.UnitTesting; | using Microsoft.VisualStudio.TestTools.UnitTesting; | ||||
using System; | using System; | ||||
using System.Linq; | using System.Linq; | ||||
using Tensorflow; | |||||
using Tensorflow.UnitTest; | |||||
using static Tensorflow.Binding; | using static Tensorflow.Binding; | ||||
namespace Tensorflow.Native.UnitTest.Eager | |||||
namespace TensorFlowNET.UnitTest.Gradient | |||||
{ | { | ||||
[TestClass] | [TestClass] | ||||
public class GradientEagerTest | |||||
public class GradientEagerTest : EagerModeTestBase | |||||
{ | { | ||||
[TestMethod] | [TestMethod] | ||||
public void ConstantSquare() | public void ConstantSquare() |
@@ -8,7 +8,7 @@ using static Tensorflow.Binding; | |||||
namespace TensorFlowNET.UnitTest.Basics | namespace TensorFlowNET.UnitTest.Basics | ||||
{ | { | ||||
[TestClass] | [TestClass] | ||||
public class ConstantTest | |||||
public class ConstantTest : EagerModeTestBase | |||||
{ | { | ||||
Status status = new Status(); | Status status = new Status(); | ||||