Beispiel #1
0
        public void SetUp()
        {
            paragraph = new Paragraph
            {
                Description = "description",
                Name        = "some name"
            };
            Sentence sentence1 = Sentence.For("{x}", Cell.For <int>("x"));
            Sentence sentence2 = Sentence.For("{y}", Cell.For <int>("y"));
            Sentence sentence3 = Sentence.For("{z}", Cell.For <int>("z"));

            paragraph.AddStructure(sentence1);
            paragraph.AddStructure(sentence2);
            paragraph.AddStructure(sentence3);

            theExample = paragraph.CreateExample();
        }