-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReloadXAsync.cs
48 lines (47 loc) · 1.14 KB
/
ReloadXAsync.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
46
47
48
using Microsoft.VisualStudio.TestTools.UnitTesting;
using static AzurAPINetTests.Static;
using System;
using System.Collections.Generic;
using System.Text;
namespace AzurAPINetTests
{
[TestClass]
public class ReloadXAsync
{
[TestMethod]
public void ReloadShipsAsync()
{
Client.ReloadShipsAsync().Wait();
}
[TestMethod]
public void ReloadChaptersAsync()
{
Client.ReloadChaptersAsync().Wait();
}
[TestMethod]
public void ReloadEventsAsync()
{
Client.ReloadEventsAsync().Wait();
}
[TestMethod]
public void ReloadBarrageAsync()
{
Client.ReloadBarrageAsync().Wait();
}
[TestMethod]
public void ReloadMemoriesAsync()
{
Client.ReloadMemoriesAsync().Wait();
}
[TestMethod]
public void ReloadEquipmentAsync()
{
Client.ReloadEquipmentsAsync().Wait();
}
[TestMethod]
public void ReloadVoiceLinesAsync()
{
Client.ReloadVoiceLinesAsync().Wait();
}
}
}