using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MgTestAdmin.Model
{
public class TestCaseInfo
{
///
/// The name of the test
///
public string TestName { get; set; }
///
/// The order when this test case will be executed
///
public int ExecuteSequence { get; set; }
public override string ToString() => $"{ExecuteSequence}: {TestName}";
}
public class TestCase
{
///
/// The name of the test
///
public string TestName { get; set; }
///
/// The order when this test case will be executed
///
public int ExecuteSequence { get; set; }
///
/// The description of the test case
///
public string Description { get; set; }
///
/// Pre-requisites
///
public string Prerequsite { get; set; }
///
/// The type of test. "Http" or "Api"
///
public string TestType { get; set; }
///
/// The parameter sets to execute as part of this test case
///
public int[] ParamSets { get; set; }
}
}