public void Returns_Nth_Highest_Paid_Employees()
        {
            var result = Reporting.CalculateHighestPaidEmployees(10);

            Assert.AreEqual(10, result.Count);
            Assert.AreEqual(118_523M, result[0].Salary);
            Assert.IsTrue(IsHighestSalary(result));
        }