Skip to content

Commit

Permalink
Merge pull request #21 from AndrewKeepCoding/test/cleaning
Browse files Browse the repository at this point in the history
test: Clean up invalid tests
  • Loading branch information
AndrewKeepCoding authored Aug 9, 2023
2 parents 0699273 + a9dcf14 commit 0ec66f7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 79 deletions.
79 changes: 0 additions & 79 deletions WinUI3Localizer.Tests/DependencyObjectWeakReferencesTests.cs

This file was deleted.

15 changes: 15 additions & 0 deletions WinUI3Localizer.Tests/LocalizerTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
using FluentAssertions;
using WinUI3Localizer;

public class LocalizerTests
{
[Fact]
public void Get_ReturnsInstanceOfLocalizer()
{
// Arrange & Act
ILocalizer result = Localizer.Get();

// Assert
result.Should().NotBeNull().And.BeAssignableTo<ILocalizer>();
}
}

0 comments on commit 0ec66f7

Please sign in to comment.