public void Input(TextInput input) { var cellTag = new CellTag(input.Cell, _step); cellTag.WriteResults(_results, _context); _tag.Append(cellTag); }
public void Input(TextInput input) { var cellTag = new CellTag(input.Cell, _step); cellTag.WritePreview(_context); _tag.Append(cellTag); }
public void write_preview_when_the_cell_value_is_missing_in_the_step() { var cell = Cell.For<string>("name"); var step = new Step(); var tag = new CellTag(cell, step); tag.WritePreview(new TestContext()); tag.Text().ShouldEqual("MISSING"); }
public void write_preview_when_the_cell_value_is_blank() { var cell = Cell.For<string>("name"); var step = new Step(); step.Set("name", string.Empty); var tag = new CellTag(cell, step); tag.WritePreview(new TestContext()); tag.Text().ShouldEqual(Step.BLANK); }
public void write_preview() { var cell = Cell.For<string>("name"); var step = new Step().With("name:Jeremy"); var tag = new CellTag(cell, step); tag.WritePreview(new TestContext()); tag.Text().ShouldEqual("Jeremy"); tag.HasClass(HtmlClasses.INPUT).ShouldBeTrue(); }
public void write_preview_when_the_cell_value_is_missing_in_the_step() { var cell = Cell.For <string>("name"); var step = new Step(); var tag = new CellTag(cell, step); tag.WritePreview(new TestContext()); tag.Text().ShouldEqual("MISSING"); }
public void write_preview_when_the_cell_value_is_null_in_the_step() { var cell = Cell.For<string>("name"); var step = new Step(); step.Set("name", null); var tag = new CellTag(cell, step); tag.WritePreview(new TestContext()); tag.Text().ShouldEqual(Step.NULL); }
public void write_results_when_the_cell_is_just_an_input() { var cell = Cell.For<string>("name"); cell.IsResult = false; var step = new Step().With("name:Jeremy"); var tag = new CellTag(cell, step); tag.WriteResults(new StepResults(), new TestContext()); tag.Text().ShouldEqual("Jeremy"); tag.HasClass(HtmlClasses.INPUT).ShouldBeTrue(); }
public void write_preview() { var cell = Cell.For <string>("name"); var step = new Step().With("name:Jeremy"); var tag = new CellTag(cell, step); tag.WritePreview(new TestContext()); tag.Text().ShouldEqual("Jeremy"); tag.HasClass(HtmlClasses.INPUT).ShouldBeTrue(); }
public void SetUp() { cell = Cell.For <string>("name"); cell.IsResult = true; step = new Step().With("name:Jeremy"); result = new StepResults(); result.SetActual("name", "Jeremy"); tag = new CellTag(cell, step); tag.WriteResults(result, new TestContext()); }
public void write_preview_when_the_cell_value_is_blank() { var cell = Cell.For <string>("name"); var step = new Step(); step.Set("name", string.Empty); var tag = new CellTag(cell, step); tag.WritePreview(new TestContext()); tag.Text().ShouldEqual(Step.BLANK); }
public void write_preview_when_the_cell_value_is_null_in_the_step() { var cell = Cell.For <string>("name"); var step = new Step(); step.Set("name", null); var tag = new CellTag(cell, step); tag.WritePreview(new TestContext()); tag.Text().ShouldEqual(Step.NULL); }
public void write_results_when_the_cell_is_just_an_input() { var cell = Cell.For <string>("name"); cell.IsResult = false; var step = new Step().With("name:Jeremy"); var tag = new CellTag(cell, step); tag.WriteResults(new StepResults(), new TestContext()); tag.Text().ShouldEqual("Jeremy"); tag.HasClass(HtmlClasses.INPUT).ShouldBeTrue(); }
private void writePreviewRow(IStep step, ITestContext context) { AddBodyRow(row => { _writer.DisplayCells.Each(cell => { var tag = new CellTag(cell, step); tag.WritePreview(context); row.Cell().Append(tag); }); row.FirstChild().AddClass("left-cell"); }); }
private void writeResultsRow(IStep step, ITestContext context) { AddBodyRow(row => { StepResults results = context.ResultsFor(step); results.Collapse(); _writer.DisplayCells.Each(cell => { var tag = new CellTag(cell, step); tag.TagName("td"); row.Append(tag); tag.WriteResults(results, context); }); row.FirstChild().AddClass("left-cell"); results.ForExceptionText(writeExceptionText); }); }
public void SetUp() { cell = Cell.For<string>("name"); cell.IsResult = true; step = new Step().With("name:Jeremy"); result = new StepResults(); //result.SetActual("name", "Chad"); result.MarkFailure("name"); tag = new CellTag(cell, step); tag.WriteResults(result, new TestContext()); }
private void writePreviewRow(IStep step, ITestContext context) { AddBodyRow(row => { _table.Cells.Each(cell => { var tag = new CellTag(cell, step); tag.WritePreview(context); row.Cell().Child(tag); }); }); }
public void TextInput(TextInput input) { var cellTag = new CellTag(input.Cell, _step); cellTag.WriteResults(_results, _context); _tag.Child(cellTag); }
public void TextInput(TextInput input) { var cellTag = new CellTag(input.Cell, _step); cellTag.WritePreview(_context); _tag.Child(cellTag); }
private void writeResultsRow(IStep step, ITestContext context) { AddBodyRow(row => { _table.Cells.Each(cell => { StepResults results = context.ResultsFor(step); var tag = new CellTag(cell, _step); tag.WriteResults(results, context); // Ditto this line of code results.ForExceptionText(writeExceptionText); row.Cell().Child(tag); }); }); }