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

12345678910111213141516
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using static Tensorflow.Binding;
  3. namespace TensorFlowNET.UnitTest.Basics
  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("2."));
  13. }
  14. }
  15. }