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

TestStatusAdaptor.cs 178B

12345678910111213
  1. using System;
  2. namespace Microsoft.Unity.VisualStudio.Editor.Testing
  3. {
  4. [Serializable]
  5. internal enum TestStatusAdaptor
  6. {
  7. Passed,
  8. Skipped,
  9. Inconclusive,
  10. Failed,
  11. }
  12. }