mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-15 22:02:31 -06:00
20 lines
506 B
C#
20 lines
506 B
C#
using Moq;
|
|
using PhotoFrame.Logic.UI.Views;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Xunit;
|
|
|
|
namespace PhotoFrame.Logic.Tests.UI.Views
|
|
{
|
|
public class ViewNormalTest : ViewTestBase<ViewNormal>
|
|
{
|
|
protected override string ExpectedUri => "ViewNormal.qml";
|
|
|
|
protected override ViewNormal CreateUUT()
|
|
{
|
|
var result = new ViewNormal(_AppModelMock, _FrameControllerMock, _FrameConfigMock);
|
|
return result;
|
|
}
|
|
}
|
|
}
|