-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Migrate test cases from WhatToEat app #33440
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Migrate test cases from WhatToEat app #33440
Conversation
|
Hey there @@CathyZhu0110! Thank you so much for your PR! Someone from the team will get assigned to your PR shortly and we'll get it reviewed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This pull request migrates test cases from the WhatToEat sample app to the ManualTests app and adds a new L3 test case to verify issue #32425. The migration includes comprehensive manual test coverage for CarouselView and ScrollView controls, along with additional bug fix verification tests.
Changes:
- Added two new test categories: CarouselView (M1-M4) and ScrollView (N1-N4) with supporting ViewModels
- Migrated 8 complete test cases covering layout, resize/rotate, navigation, and search functionality
- Added 2 bug fix test cases (L2 and L3) for TabBar switching and Navigation.PushAsync issues
- Created supporting pages (MonkeyDetailPage, AddMonkeyPage) for test functionality
Reviewed changes
Copilot reviewed 28 out of 28 changed files in this pull request and generated 11 comments.
Show a summary per file
| File | Description |
|---|---|
| Category.cs | Adds CarouselView and ScrollView category constants |
| CategoryViewModel.cs | Adds CategoryViewModel classes for CarouselView and ScrollView categories |
| M1_Layout.xaml/.cs | CarouselView basic layout test with horizontal swiping |
| M2_ResizeRotate.xaml/.cs | CarouselView resize and rotation behavior test |
| M3_Navigation.xaml/.cs | CarouselView navigation to detail page test |
| M4_AddDelete.xaml/.cs | CarouselView add/delete item functionality test |
| AddMonkeyPage.xaml/.cs | Supporting page for adding new monkey entries |
| MonkeyDetailPage (CarouselView) | Detail page with optional delete functionality |
| N1_Layout.xaml/.cs | ScrollView basic layout with 2-column grid test |
| N2_ResizeRotate.xaml/.cs | ScrollView resize and rotation behavior test |
| N3_Navigation.xaml/.cs | ScrollView navigation to detail page test |
| N4_SearchBar.xaml/.cs | ScrollView with SearchBar filtering test |
| MonkeyDetailPage (ScrollView) | Detail page without delete functionality |
| L2_TabBarSwitching.xaml/.cs | Bug fix test for TabBar switching issue #32900 |
| L3_Navigation.PushAsync.xaml/.cs | Bug fix test for Navigation.PushAsync issue #32425 |
src/Controls/tests/ManualTests/Tests/BugFixes/L3_Navigation.PushAsync.xaml.cs
Outdated
Show resolved
Hide resolved
src/Controls/tests/ManualTests/Tests/CarouselView/MonkeyDetailPage.xaml.cs
Show resolved
Hide resolved
src/Controls/tests/ManualTests/Tests/CarouselView/AddMonkeyPage.xaml.cs
Outdated
Show resolved
Hide resolved
src/Controls/tests/ManualTests/Tests/ScrollView/N4_SearchBar.xaml
Outdated
Show resolved
Hide resolved
src/Controls/tests/ManualTests/Tests/BugFixes/L3_Navigation.PushAsync.xaml
Outdated
Show resolved
Hide resolved
src/Controls/tests/ManualTests/Tests/BugFixes/L2_TabBarSwitching.xaml.cs
Outdated
Show resolved
Hide resolved
src/Controls/tests/ManualTests/Tests/ScrollView/N3_Navigation.xaml.cs
Outdated
Show resolved
Hide resolved
src/Controls/tests/ManualTests/Tests/CarouselView/M3_Navigation.xaml.cs
Outdated
Show resolved
Hide resolved
src/Controls/tests/ManualTests/Tests/ScrollView/N2_ResizeRotate.xaml.cs
Outdated
Show resolved
Hide resolved
…shAsync.xaml.cs Co-authored-by: Copilot <[email protected]>
…e.xaml.cs Co-authored-by: Copilot <[email protected]>
…e.xaml.cs Co-authored-by: Copilot <[email protected]>
…n.xaml.cs Co-authored-by: Copilot <[email protected]>
…ng.xaml.cs Co-authored-by: Copilot <[email protected]>
…shAsync.xaml Co-authored-by: Copilot <[email protected]>
Co-authored-by: Copilot <[email protected]>
…xaml.cs Co-authored-by: Copilot <[email protected]>
Description of Change