public void InitialValue(bool useCompiledXaml) { var layout = new InlineCSS(useCompiledXaml); Assert.That(layout.BackgroundColor, Is.EqualTo(Colors.Green)); Assert.That(layout.stack.BackgroundColor, Is.EqualTo(Colors.Green)); Assert.That(layout.button.BackgroundColor, Is.EqualTo(Colors.Green)); Assert.That(layout.label.BackgroundColor, Is.EqualTo(VisualElement.BackgroundColorProperty.DefaultValue)); Assert.That(layout.label.TextTransform, Is.EqualTo(TextTransform.Uppercase)); }
public void InlineCSSParsed(bool useCompiledXaml) { var layout = new InlineCSS(useCompiledXaml); Assert.That(layout.label.TextColor, Is.EqualTo(Colors.Pink)); }