Example #1
0
        public void GetArmorsByProficiencies()
        {
            var proficiencies = new List <ArmorProficiency>();

            proficiencies.Add(new ArmorProficiency("Light"));
            var armors = gateway.FindByProficiency(proficiencies);

            Assert.Equal(1, armors.Count());
        }