Skip to content

Commit 3856e62

Browse files
authored
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)
1 parent cc35a26 commit 3856e62

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#nullable enable
2+
3+
using System;
4+
using System.Collections.Generic;
5+
using System.Linq;
6+
using System.Reflection;
7+
using System.Threading;
8+
9+
using Java.Interop;
10+
11+
using NUnit.Framework;
12+
13+
namespace Java.InteropTests {
14+
[TestFixture]
15+
public class AndroidValueManagerContractTests : JniRuntimeJniValueManagerContract {
16+
17+
protected override Type ValueManagerType => typeof (Android.Runtime.AndroidValueManager);
18+
}
19+
}

0 commit comments

Comments
 (0)