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 328 B

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