Skip to content

Commit

Permalink
Merge pull request #18547 from ajpinedam/chore/add.manual.test.descri…
Browse files Browse the repository at this point in the history
…ption
  • Loading branch information
morning4coffe-dev authored Oct 23, 2024
2 parents cfba434 + 88d4d81 commit 0c9740a
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,14 @@
namespace UITests.Windows_UI_Xaml_Controls.CommandBar
{

[SampleControlInfo("CommandBar", "Native_AppBarButton_Binding", typeof(CommandBarViewModel), isManualTest: true)]
[SampleControlInfo(
"CommandBar",
"Native_AppBarButton_Binding",
typeof(CommandBarViewModel),
description: "Shows a Native CommandBar with an AppBarButton. \n" +
"The AppBarButton will show a FilterIcon and when Clicked it will show a CloseIcon. \n" +
"This tests that the AppBarButton bindings are working.",
isManualTest: true)]
public sealed partial class CommandBar_Native_With_AppBarButton_Binding : Page
{
public CommandBar_Native_With_AppBarButton_Binding()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@

namespace Uno.UI.Samples.Content.UITests.ContentControlTestsControl
{
[SampleControlInfo("ContentControl", "ContentControl_ComboBoxSetNull", typeof(Presentation.SamplePages.ContentControlTestViewModel), isManualTest: true)]
[SampleControlInfo(
"ContentControl",
"ContentControl_ComboBoxSetNull",
typeof(Presentation.SamplePages.ContentControlTestViewModel),
description: "Shows a ComboBox and a Button. \n" +
"On WASM, and any other platform, when the `remove` button is clicked, the application should not throw an exception.",
isManualTest: true)]
public sealed partial class ContentControl_ComboBoxSetNull : UserControl
{
public ContentControl_ComboBoxSetNull()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@

namespace UITests.Windows_UI_Xaml_Controls.FlipView;

[SampleControlInfo("FlipView", "FlipView_Background", isManualTest: true)]
[SampleControlInfo(
"FlipView",
"FlipView_Background",
description: "Shows a green Page with a red FlipView in the middle. \n" +
"This tests that the FlipView background is displayed when the FlipView is empty.",
isManualTest: true)]
public sealed partial class FlipView_Background : UserControl
{
public FlipView_Background()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,14 @@
// The User Control item template is documented at https://go.microsoft.com/fwlink/?LinkId=234236
namespace UITests.Shared.Windows_UI_Xaml_Controls.ListView
{
[SampleControlInfo("ListView", "ListView_DataContext_Reference", viewModelType: typeof(DataContextReferenceViewModel), isManualTest: true)]
[SampleControlInfo(
"ListView",
"ListView_DataContext_Reference",
viewModelType: typeof(DataContextReferenceViewModel),
description: "Display a ListView of items. Each row has a TextBox and a Click Button. \n" +
"When Cliking on a row's button the item description will change into `Selected Item [Number]` where `Number` \n" +
"is the row number of the item in question. This whole process should not fail.",
isManualTest: true)]
public sealed partial class ListView_DataContext_Reference : UserControl
{
public ListView_DataContext_Reference()
Expand Down

0 comments on commit 0c9740a

Please sign in to comment.