public void GetTimeMaxLength_WithShowSecondsTrue_ReturnsLengthForDoubleSpacedDigits_IncludingTheSeconds()
        {
            var formatter = new DateTimeFormatter();

            using (new CultureScope("en-US"))
            {
                Assert.That(formatter.GetTimeMaxLength(true), Is.EqualTo(11));
            }
        }