forked from microsoft/BotFramework-FunctionalTests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestScript.cs
More file actions
23 lines (21 loc) · 686 Bytes
/
TestScript.cs
File metadata and controls
23 lines (21 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System.Collections.Generic;
using Newtonsoft.Json;
namespace TranscriptTestRunner
{
/// <summary>
/// A Test Script that can be used for functional testing of bots.
/// </summary>
public class TestScript
{
/// <summary>
/// Gets the test script items.
/// </summary>
/// <value>
/// The sequence of test scripts to perform to validate the bots behavior.
/// </value>
[JsonProperty("items")]
public List<TestScriptItem> Items { get; } = new List<TestScriptItem>();
}
}