mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
17 lines
402 B
C#
17 lines
402 B
C#
![]() |
using ModernKeePass.ViewModels;
|
|||
|
using NUnit.Framework;
|
|||
|
using Windows.ApplicationModel;
|
|||
|
|
|||
|
namespace ModernKeePassApp.ViewModelTest
|
|||
|
{
|
|||
|
[TestFixture]
|
|||
|
public class AboutViewModelTests
|
|||
|
{
|
|||
|
[Test]
|
|||
|
public void Should_Display_App_Version()
|
|||
|
{
|
|||
|
var aboutVm = new AboutViewModel(Package.Current);
|
|||
|
Assert.AreEqual("1.0", aboutVm.Version);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|