-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGetData.cs
45 lines (45 loc) · 1.38 KB
/
GetData.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Jan0660.AzurAPINet;
using static AzurAPINetTests.Static;
namespace AzurAPINetTests
{
[TestClass]
public class getData
{
[TestMethod]
public void getShips()
{
var ships = Client.getAllShips() ?? throw new System.Exception("returned null");
}
[TestMethod]
public void getBarrage()
{
var barrage = Client.getAllBarrage() ?? throw new System.Exception("returned null");
}
[TestMethod]
public void getEquipments()
{
var equipment = Client.getAllEquipments() ?? throw new System.Exception("returned null");
}
[TestMethod]
public void getChapters()
{
var chapters = Client.getAllChapters() ?? throw new System.Exception("returned null");
}
[TestMethod]
public void getVoiceLines()
{
var voiceLines = Client.getAllVoiceLines() ?? throw new System.Exception("returned null");
}
[TestMethod]
public void getEvents()
{
var events = Client.getAllEvents() ?? throw new System.Exception("returned null");
}
[TestMethod]
public void getMemories()
{
var memories = Client.getAllMemories() ?? throw new System.Exception("returned null");
}
}
}