ConvertersTests.

Primitive_Types_Are_Properly_Parsed(string, string) Method

Namespace
XamlParserTests
Containing Type
ConvertersTests

Syntax

[Theory, InlineData("x:Int32", "1"), InlineData("x:Double", "1.5"), InlineData("x:Single", "2.5"), InlineData("x:String", "Some string"), InlineData("x:TimeSpan", "01:10:00"), InlineData("sys:Int32", "1"), InlineData("sys:Double", "1.5"), InlineData("sys:Single", "2.5"), InlineData("sys:String", "Some string"), InlineData("sys:TimeSpan", "01:10:00")]
public void Primitive_Types_Are_Properly_Parsed(string type, string value)

Attributes

Type Description
Theory
InlineData
InlineData
InlineData
InlineData
InlineData
InlineData
InlineData
InlineData
InlineData
InlineData

Parameters

Name Type Description
type string
value string

Return Value

Type Description
void