AspUnitRunner.Tests.TestResults.FormatDetails_with_one_detail_should_return_expected_string C# (CSharp) Method

FormatDetails_with_one_detail_should_return_expected_string() private method

        public void FormatDetails_with_one_detail_should_return_expected_string()
        {
            var results = new Results {
                DetailList = new IResultDetail[] {
                    new ResultDetail(ResultType.Failure, "Container.TestCase", "Description")
                }
            };

            Assert.That(results.FormatDetails(),
                Is.EqualTo("Failure: Container.TestCase: Description"));
        }