You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

VersionTest.cs 361 B

1234567891011121314151617
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using Tensorflow;
  3. using static Tensorflow.Binding;
  4. namespace TensorFlowNET.UnitTest
  5. {
  6. [TestClass]
  7. public class VersionTest
  8. {
  9. [TestMethod]
  10. public void GetVersion()
  11. {
  12. var ver = tf.VERSION;
  13. Assert.IsTrue(ver.StartsWith("1.14."));
  14. }
  15. }
  16. }