Skip to content

Commit 49f0428

Browse files
committed
test
1 parent 54cfbf3 commit 49f0428

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

3.5 KB
Binary file not shown.

mdoc/mdoc.Test/FormatterTests.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -619,6 +619,12 @@ public void CSharpAllowsRefStructForMemberTest(string typeFullName, string metho
619619
TestMethodSignature(allowsRefStructDllPath, typeFullName, methodName, expectedSignature);
620620
}
621621

622+
[TestCase("SomeClass", "MethodWithRefReadOnlyParam", "public void MethodWithRefReadOnlyParam (ref readonly int i);")]
623+
public void CSharpRefReadonlyTest(string typeFullName, string methodName, string expectedSignature)
624+
{
625+
TestMethodSignature("../../../../external/Test/RefReadonlyParameter.dll", typeFullName, methodName, expectedSignature);
626+
}
627+
622628
#region Helper Methods
623629
string RealTypeName(string name){
624630
switch (name) {

0 commit comments

Comments
 (0)