@@ -61,9 +61,9 @@ public static TheoryData<object, Type, Func<object>, string, TagHelperOutputCont
6161 { modelWithText , typeof ( Model ) , ( ) => modelWithText . Text , "Text" ,
6262 new TagHelperOutputContent ( string . Empty , "Hello World" , "Hello World" , "Text" ) } ,
6363 { modelWithText , typeof ( Model ) , ( ) => modelWithNull . Text , "Text" ,
64- new TagHelperOutputContent ( "Hello World" , null , null , "Text" ) } ,
64+ new TagHelperOutputContent ( "Hello World" , null , "Hello World" , "Text" ) } ,
6565 { modelWithText , typeof ( Model ) , ( ) => modelWithText . Text , "Text" ,
66- new TagHelperOutputContent ( "Hello World" , null , null , "Text" ) } ,
66+ new TagHelperOutputContent ( "Hello World" , null , "Hello World" , "Text" ) } ,
6767 { modelWithText , typeof ( Model ) , ( ) => modelWithNull . Text , "Text" ,
6868 new TagHelperOutputContent ( "Hello World1" , "Hello World2" , "Hello World2" , "Text" ) } ,
6969 { modelWithText , typeof ( Model ) , ( ) => modelWithText . Text , "Text" ,
@@ -82,9 +82,9 @@ public static TheoryData<object, Type, Func<object>, string, TagHelperOutputCont
8282 { modelWithText , typeof ( NestedModel ) , ( ) => modelWithText . NestedModel . Text , "NestedModel.Text" ,
8383 new TagHelperOutputContent ( string . Empty , "Hello World" , "Hello World" , "NestedModel_Text" ) } ,
8484 { modelWithNull , typeof ( NestedModel ) , ( ) => modelWithNull . NestedModel . Text , "NestedModel.Text" ,
85- new TagHelperOutputContent ( "Hello World" , null , null , "NestedModel_Text" ) } ,
85+ new TagHelperOutputContent ( "Hello World" , null , "Hello World" , "NestedModel_Text" ) } ,
8686 { modelWithText , typeof ( NestedModel ) , ( ) => modelWithText . NestedModel . Text , "NestedModel.Text" ,
87- new TagHelperOutputContent ( "Hello World" , null , null , "NestedModel_Text" ) } ,
87+ new TagHelperOutputContent ( "Hello World" , null , "Hello World" , "NestedModel_Text" ) } ,
8888 { modelWithNull , typeof ( NestedModel ) , ( ) => modelWithNull . NestedModel . Text , "NestedModel.Text" ,
8989 new TagHelperOutputContent ( "Hello World1" , "Hello World2" , "Hello World2" , "NestedModel_Text" ) } ,
9090 { modelWithText , typeof ( NestedModel ) , ( ) => modelWithText . NestedModel . Text , "NestedModel.Text" ,
@@ -105,9 +105,9 @@ public static TheoryData<object, Type, Func<object>, string, TagHelperOutputCont
105105 { models , typeof ( Model ) , ( ) => models [ 1 ] . Text , "[1].Text" ,
106106 new TagHelperOutputContent ( string . Empty , "Hello World" , "Hello World" , "z1__Text" ) } ,
107107 { models , typeof ( Model ) , ( ) => models [ 0 ] . Text , "[0].Text" ,
108- new TagHelperOutputContent ( "Hello World" , null , null , "z0__Text" ) } ,
108+ new TagHelperOutputContent ( "Hello World" , null , "Hello World" , "z0__Text" ) } ,
109109 { models , typeof ( Model ) , ( ) => models [ 1 ] . Text , "[1].Text" ,
110- new TagHelperOutputContent ( "Hello World" , null , null , "z1__Text" ) } ,
110+ new TagHelperOutputContent ( "Hello World" , null , "Hello World" , "z1__Text" ) } ,
111111 { models , typeof ( Model ) , ( ) => models [ 0 ] . Text , "[0].Text" ,
112112 new TagHelperOutputContent ( "Hello World1" , "Hello World2" , "Hello World2" , "z0__Text" ) } ,
113113 { models , typeof ( Model ) , ( ) => models [ 1 ] . Text , "[1].Text" ,
@@ -126,9 +126,9 @@ public static TheoryData<object, Type, Func<object>, string, TagHelperOutputCont
126126 { models , typeof ( NestedModel ) , ( ) => models [ 1 ] . NestedModel . Text , "[1].NestedModel.Text" ,
127127 new TagHelperOutputContent ( string . Empty , "Hello World" , "Hello World" , "z1__NestedModel_Text" ) } ,
128128 { models , typeof ( NestedModel ) , ( ) => models [ 0 ] . NestedModel . Text , "[0].NestedModel.Text" ,
129- new TagHelperOutputContent ( "Hello World" , null , null , "z0__NestedModel_Text" ) } ,
129+ new TagHelperOutputContent ( "Hello World" , null , "Hello World" , "z0__NestedModel_Text" ) } ,
130130 { models , typeof ( NestedModel ) , ( ) => models [ 1 ] . NestedModel . Text , "[1].NestedModel.Text" ,
131- new TagHelperOutputContent ( "Hello World" , null , null , "z1__NestedModel_Text" ) } ,
131+ new TagHelperOutputContent ( "Hello World" , null , "Hello World" , "z1__NestedModel_Text" ) } ,
132132 { models , typeof ( NestedModel ) , ( ) => models [ 0 ] . NestedModel . Text , "[0].NestedModel.Text" ,
133133 new TagHelperOutputContent ( "Hello World1" , "Hello World2" , "Hello World2" , "z0__NestedModel_Text" ) } ,
134134 { models , typeof ( NestedModel ) , ( ) => models [ 1 ] . NestedModel . Text , "[1].NestedModel.Text" ,
0 commit comments