Пример #1
0
        public void AngleOfReachExists_ReturnsCorrectValue()
        {
            //  arrange
            float speed        = 30;
            float targetHeight = -20;
            float distance     = 89.709227069098f;

            //  act
            bool exists = PMath.AngleOfReachExists(speed, distance, targetHeight);

            //  assert
            Assert.IsTrue(exists);
        }