Skip to content
This repository was archived by the owner on Jun 20, 2023. It is now read-only.

Commit 2a9b3e2

Browse files
committed
Tests to prevent future regression of missed types
1 parent 04b2588 commit 2a9b3e2

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

tests/AndroidSupport.Tests/Tests.cs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,23 @@ public async Task Bugzilla_51180_ToBundle_Compat_Does_Not_Fail()
3939
Assert.NotNull(bundleOrig);
4040
Assert.NotNull(bundleCompat);
4141
}
42+
43+
[Fact]
44+
public void Support_Design_Internal_Classes_Exist()
45+
{
46+
var ctx = MainActivity.TestParentActivity;
47+
var a = new Android.Support.Design.Internal.BottomNavigationItemView(ctx);
48+
var b = new Android.Support.Design.Internal.BottomNavigationMenu(ctx);
49+
var c = new Android.Support.Design.Internal.BottomNavigationMenuView(ctx);
50+
var d = new Android.Support.Design.Internal.SnackbarContentLayout(ctx);
51+
}
52+
53+
[Fact]
54+
public void Support_Design_Classes_Exist()
55+
{
56+
var ctx = MainActivity.TestParentActivity;
57+
var e = new Android.Support.Design.Widget.BottomSheetDialog(ctx);
58+
var f = new Android.Support.Design.Widget.BottomSheetDialogFragment();
59+
}
4260
}
4361
}

0 commit comments

Comments
 (0)