public void DescribeUnmetExpectationsTo(IDescription writer)
        {
            writer.AppendLine("expectations:");
            foreach (IExpectation expectation in expectations)
            {
                   Indent(writer, depth + 1);
                    expectation.DescribeUnmetExpectationsTo(writer);
                    writer.AppendNewLine();

            }
        }