-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathBloodTest.cs
69 lines (60 loc) · 2.25 KB
/
BloodTest.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using System;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using swlSimulator.api;
using swlSimulator.api.Combat;
using swlSimulator.api.Models;
using swlSimulator.api.Spells;
using swlSimulator.api.Weapons;
using swlSimulator.Models;
namespace swlSimulator.Tests
{
[TestClass]
public class BloodTest
{
[TestMethod]
public void TestBloodGimmick()
{
var setting = new Settings
{
CombatPower = 10,
PrimaryWeapon = WeaponType.Blood,
SecondaryWeapon = WeaponType.Fist,
FightLength = 5,
TargetType = TargetType.Champion,
Apl = ""
};
var player = new Player(setting);
var bSpell = new BloodSpell();
player.Spells.Add(bSpell);
var engine = new Engine(setting);
var fight = engine.StartFight(player);
var bSpells = fight.RoundResults
.SelectMany(r => r.Attacks.Where(a => a.Spell is BloodSpell)).Count();
var round1 = fight.RoundResults.First(r => r.TimeSec == 1);
var round2 = fight.RoundResults.First(r => r.TimeSec == 2);
var round3 = fight.RoundResults.First(r => r.TimeSec == 3);
var round4 = fight.RoundResults.First(r => r.TimeSec == 4);
var round5 = fight.RoundResults.First(r => r.TimeSec == 5);
Assert.IsTrue(Math.Abs(round1.TotalDamage - 10) < 0.001); // 0
Assert.IsTrue(Math.Abs(round2.TotalDamage - 11.56) < 0.01); // 30
Assert.IsTrue(Math.Abs(round3.TotalDamage - 11.56) < 0.01); // 60
Assert.IsTrue(Math.Abs(round4.TotalDamage - 13.27) < 0.01); // 90
Assert.IsTrue(Math.Abs(round5.TotalDamage - 15.34) < 0.01); // 100
Assert.IsTrue(bSpells == 5);
}
// TODO: Add Decay test
private sealed class BloodSpell : Spell
{
public BloodSpell()
{
PrimaryGimmickGain = 30;
WeaponType = WeaponType.Blood;
SpellType = SpellType.Cast;
CastTime = 1;
BaseDamage = 1;
BonusCritChance = -100; // no crits plz
}
}
}
}