Skip to content

Commit feaeb4f

Browse files
Updated DotNetNormalized arguments test
1 parent 907c674 commit feaeb4f

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Tests/EventHorizon.Blazor.TypeScript.Interop.Generator.Tests/GenerateClassStatementStringTests/Constructors/DotNetNormalizedArguments.Expected.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ namespace Examples
4646
}
4747

4848
public ExampleClass(
49-
string @ref, string @lock, string @unlock, string @object, string @event, string @bool, string @virtual
49+
string @ref, string @lock, string @unlock, string @object, string @event, string @bool, string @virtual, string @string, string @params
5050
)
5151
{
5252
var entity = EventHorizonBlazorInterop.New(
5353
new string[] { "Examples", "ExampleClass" },
54-
@ref, @lock, @unlock, @object, @event, @bool, @virtual
54+
@ref, @lock, @unlock, @object, @event, @bool, @virtual, @string, @params
5555
);
5656
___guid = entity.___guid;
5757
}

Tests/EventHorizon.Blazor.TypeScript.Interop.Generator.Tests/GenerateClassStatementStringTests/Constructors/DotNetNormalizedArguments.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ declare module Examples {
66
object: string,
77
event: string,
88
bool: string,
9-
virtual: string);
9+
virtual: string,
10+
string: string,
11+
params: string
12+
);
1013
}
1114
}

0 commit comments

Comments
 (0)