Skip to content

Commit bad8fb8

Browse files
committed
Add test-case for non-ASCII method name
1 parent bd264cf commit bad8fb8

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/testing/methodtest.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -713,6 +713,10 @@ public static string ParamsArrayOverloaded(int i, params int[] paramsArray)
713713
{
714714
return "with params-array";
715715
}
716+
717+
public static void EncodingTestÅngström()
718+
{
719+
}
716720
}
717721

718722

src/tests/test_method.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,3 +1221,5 @@ def test_params_array_overload():
12211221
# res = MethodTest.ParamsArrayOverloaded(paramsArray=[], i=1)
12221222
# assert res == "with params-array"
12231223

1224+
def test_method_encoding():
1225+
MethodTest.EncodingTestÅngström()

0 commit comments

Comments
 (0)