Skip to content

Commit

Permalink
test: properly mark UI tests for exclusion in CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
abdes committed Oct 5, 2024
1 parent cc70873 commit 75f60f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@ namespace DroidNet.Converters.Tests;
using FluentAssertions;
using Microsoft.UI.Xaml;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.VisualStudio.TestTools.UnitTesting.AppContainer;

[TestClass]
[ExcludeFromCodeCoverage]
public class DictionaryValueConverterTest
{
private readonly DictionaryValueConverter<int> converter = new();

[UITestMethod]
[TestMethod]
public void Convert_ReturnsValue_ForExistingKey()
{
// Arrange
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@

namespace DroidNet.Converters.Tests;

using System.Diagnostics.CodeAnalysis;
using FluentAssertions;
using Microsoft.UI.Xaml.Controls;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.VisualStudio.TestTools.UnitTesting.AppContainer;

[TestClass]
[ExcludeFromCodeCoverage]
[TestCategory("UITest")]
public class ItemClickEventArgsToClickedItemConverterTest
{
private readonly ItemClickEventArgsToClickedItemConverter converter = new();
Expand Down

0 comments on commit 75f60f3

Please sign in to comment.