Skip to content
This repository was archived by the owner on Aug 27, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/Java.Interop-Tests/Java.Interop/JniPeerMembersTests.cs
Original file line numberDiff line numberDiff line change
Expand Up@@ -78,6 +78,7 @@ public void MethodLookupForNonexistentStaticMethodWillTryFallbacks ()
}

[Test]
[Category ("NativeAOTIgnore")]
public void ReplacementTypeUsedForMethodLookup ()
Comment thread
jonathanpeppers marked this conversation as resolved.
{
using var o = new RenameClassDerived ();
Expand All@@ -86,6 +87,7 @@ public void ReplacementTypeUsedForMethodLookup ()
}

[Test]
[Category ("NativeAOTIgnore")]
public void ReplaceInstanceMethodName ()
Comment thread
jonathanpeppers marked this conversation as resolved.
{
using var o = new JavaLangRemappingTestObject ();
Expand All@@ -95,13 +97,15 @@ public void ReplaceInstanceMethodName ()
}

[Test]
[Category ("NativeAOTIgnore")]
public void ReplaceStaticMethodName ()
Comment thread
jonathanpeppers marked this conversation as resolved.
{
var r = JavaLangRemappingTestRuntime.remappedToGetRuntime ();
JniObjectReference.Dispose (ref r);
}

[Test]
[Category ("NativeAOTIgnore")]
public void ReplaceInstanceMethodWithStaticMethod ()
Comment thread
jonathanpeppers marked this conversation as resolved.
{
using var o = new JavaLangRemappingTestObject ();
Expand Down
Loading