void Skill()
        {
            Ratul ratul = new Ratul(null, new Skill());

            Assert.Equal(new[] { "move", "hold collar", "knee! knee!! knee!!!" }, ratul.ExecuteDistantAction());
        }
        void Power()
        {
            Ratul ratul = new Ratul(null, new Power());

            Assert.Equal(new[] { "move", "pick up", "slam!" }, ratul.ExecuteDistantAction());
        }