RandomTestStep.cs 516 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Shaker.Models
  8. {
  9. public enum RandomTestStep
  10. {
  11. [Description("RandomTestStepStart")]
  12. Start,
  13. [Description("RandomTestStepUp")]
  14. Up,
  15. [Description("RandomTestStepIdentify")]
  16. Identify,
  17. [Description("RandomTestStepStop")]
  18. Stop,
  19. [Description("RandomTestStepTest")]
  20. Test,
  21. }
  22. }