Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Changes: dotnet/java-interop@9b1d878...e288589
    
  * dotnet/java-interop@e288589d: [Java.Interop] Add JniRuntime.JniValueManager.GetPeer() (dotnet/java-interop#1295)
  * dotnet/java-interop@bbb15b71: [ci] Add dev/* branches to CI trigger (dotnet/java-interop#1297)
  • Loading branch information
jonpryor authored Jan 30, 2025
1 parent cc35a26 commit 3856e62
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#nullable enable

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Threading;

using Java.Interop;

using NUnit.Framework;

namespace Java.InteropTests {
[TestFixture]
public class AndroidValueManagerContractTests : JniRuntimeJniValueManagerContract {

protected override Type ValueManagerType => typeof (Android.Runtime.AndroidValueManager);
}
}

0 comments on commit 3856e62

Please sign in to comment.