Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -399,21 +399,25 @@ public class JniValueMarshaler_Double_ContractTests : JniValueMarshaler_BuiltinT
}

[TestFixture]
[Category("LLVMIgnore")] //FIXME: https://github.com/dotnet/runtime/issues/89190
public class JniValueMarshaler_NullableBoolean_ContractTests : JniValueMarshalerContractTests<bool?> {
protected override bool? Value {get {return true;}}
}

[TestFixture]
[Category("LLVMIgnore")] //FIXME: https://github.com/dotnet/runtime/issues/89190
public class JniValueMarshaler_NullableSByte_ContractTests : JniValueMarshalerContractTests<sbyte?> {
protected override sbyte? Value {get {return (sbyte) 2;}}
}

[TestFixture]
[Category("LLVMIgnore")] //FIXME: https://github.com/dotnet/runtime/issues/89190
public class JniValueMarshaler_NullableChar_ContractTests : JniValueMarshalerContractTests<char?> {
protected override char? Value {get {return '3';}}
}

[TestFixture]
[Category("LLVMIgnore")] //FIXME: https://github.com/dotnet/runtime/issues/89190
public class JniValueMarshaler_NullableInt16_ContractTests : JniValueMarshalerContractTests<short?> {
protected override short? Value {get {return (short) 4;}}
}
Expand Down