forked from BenFradet/RiotSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRiotApiExceptionTest.cs
33 lines (30 loc) · 1.15 KB
/
RiotApiExceptionTest.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
using Microsoft.VisualStudio.TestTools.UnitTesting;
using RiotSharp;
using System;
using System.Configuration;
namespace RiotSharpTest
{
[TestClass]
public class RiotApiExceptionTest
{
private static int id = int.Parse(ConfigurationManager.AppSettings["Summoner1Id"]);
private static string faultyApiKey = ConfigurationManager.AppSettings["FaultyApiKey"];
private static RiotApi faultyApi = RiotApi.GetInstance(faultyApiKey);
private static string apiKey = ConfigurationManager.AppSettings["ApiKey"];
private static Region region = (Region)Enum.Parse(typeof(Region), ConfigurationManager.AppSettings["Region"]);
[TestMethod]
[TestCategory("Exception")]
[ExpectedException(typeof(RiotSharpException))]
public void GetSummoner_ShouldThrowRiotSharpException_Test()
{
faultyApi.GetSummoner(region, id);
}
[TestMethod]
[TestCategory("Exception")]
[ExpectedException(typeof(RiotSharpException))]
public void GetChampions_ShouldThrowRiotSharpException_Test()
{
faultyApi.GetChampions(region);
}
}
}