public static void Whitespace(RenderTreeFrame frame, int?sequence = null) { Assert.Equal(RenderTreeFrameType.Text, frame.FrameType); AssertFrame.Sequence(frame, sequence); Assert.True(string.IsNullOrWhiteSpace(frame.TextContent)); }
public static void Region(RenderTreeFrame frame, int subtreeLength, int?sequence = null) { Assert.Equal(RenderTreeFrameType.Region, frame.FrameType); Assert.Equal(subtreeLength, frame.RegionSubtreeLength); AssertFrame.Sequence(frame, sequence); }
public static void ComponentWithInstance <T>(RenderTreeFrame frame, int componentId, int?sequence = null) where T : IComponent { AssertFrame.Component <T>(frame, sequence); Assert.IsType <T>(frame.Component); Assert.Equal(componentId, frame.ComponentId); }
public static void Component <T>(RenderTreeFrame frame, int?sequence = null) where T : IComponent { Assert.Equal(RenderTreeFrameType.Component, frame.FrameType); Assert.Equal(typeof(T), frame.ComponentType); AssertFrame.Sequence(frame, sequence); }
public static void Attribute(RenderTreeFrame frame, string attributeName, UIEventHandler attributeEventHandlerValue, int?sequence = null) { AssertFrame.Attribute(frame, attributeName, sequence); Assert.Equal(attributeEventHandlerValue, frame.AttributeValue); }
public static void Attribute(RenderTreeFrame frame, string attributeName, int?sequence = null) { Assert.Equal(RenderTreeFrameType.Attribute, frame.FrameType); Assert.Equal(attributeName, frame.AttributeName); AssertFrame.Sequence(frame, sequence); }