UnitTest1.cs 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. using Microsoft.Analytics.Interfaces;
  2. using Microsoft.Analytics.Interfaces.Streaming;
  3. using Microsoft.Analytics.Types.Sql;
  4. using Microsoft.Analytics.UnitTest;
  5. using Microsoft.VisualStudio.TestTools.UnitTesting;
  6. using System;
  7. using System.Collections.Generic;
  8. using System.IO;
  9. using System.Linq;
  10. using System.Text;
  11. namespace UnitTestProject1
  12. {
  13. [TestClass]
  14. public class UnitTest1
  15. {
  16. public UnitTest1()
  17. {
  18. //
  19. // TODO: Add constructor logic here
  20. //
  21. }
  22. private TestContext testContextInstance;
  23. /// <summary>
  24. ///Gets or sets the test context which provides
  25. ///information about and functionality for the current test run.
  26. ///</summary>
  27. public TestContext TestContext
  28. {
  29. get
  30. {
  31. return testContextInstance;
  32. }
  33. set
  34. {
  35. testContextInstance = value;
  36. }
  37. }
  38. #region Additional test attributes
  39. //
  40. // You can use the following additional attributes as you write your tests:
  41. //
  42. // Use ClassInitialize to run code before running the first test in the class
  43. // [ClassInitialize()]
  44. // public static void MyClassInitialize(TestContext testContext) { }
  45. //
  46. // Use ClassCleanup to run code after all tests in a class have run
  47. // [ClassCleanup()]
  48. // public static void MyClassCleanup() { }
  49. //
  50. // Use TestInitialize to run code before running each test
  51. // [TestInitialize()]
  52. // public void MyTestInitialize() { }
  53. //
  54. // Use TestCleanup to run code after each test has run
  55. // [TestCleanup()]
  56. // public void MyTestCleanup() { }
  57. //
  58. #endregion
  59. [TestMethod]
  60. public void TestMethod1()
  61. {
  62. //
  63. // TODO: Add test logic here
  64. //
  65. }
  66. }
  67. }