Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit bc9bc83

Browse files
Adding blank tests
1 parent 88edbb5 commit bc9bc83

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using GitHub.Unity;
2+
using NUnit.Framework;
3+
4+
namespace UnitTests.UI
5+
{
6+
public class TestTreeData : ITreeData
7+
{
8+
public string FullPath { get; set; }
9+
public string Path { get; set; }
10+
public bool IsActive { get; set; }
11+
}
12+
13+
[TestFixture]
14+
public class TreeLoaderTests
15+
{
16+
17+
}
18+
}

src/tests/UnitTests/UnitTests.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@
9696
<Compile Include="ProcessManagerExtensions.cs" />
9797
<Compile Include="SetUpFixture.cs" />
9898
<Compile Include="Properties\AssemblyInfo.cs" />
99+
<Compile Include="UI\TreeLoaderTests.cs" />
99100
<Compile Include="UI\TreeBuilderTests.cs" />
100101
</ItemGroup>
101102
<ItemGroup>

0 commit comments

Comments
 (0)