public void ConvertHoursTest_AssertFirstHoursRowLengthEqualsFour()
        {
            var result   = _timeConver.ConvertHours(24);
            var firstRow = result.Split(Environment.NewLine)?.First();

            Assert.IsNotNull(firstRow);
            Assert.AreEqual(firstRow.Length, 4);
        }