Skip to content

Commit 5ae661d

Browse files
committed
Rename TestRunner to SimpleUnitTesting and bump version
1 parent e2ecc19 commit 5ae661d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace FlaxCommunity.UnitTesting.Editor
1111
{
12-
public class TestRunner : EditorPlugin
12+
public class SimpleUnitTesting : EditorPlugin
1313
{
1414
private static readonly List<Type> _suites = new List<Type>();
1515
private MainMenuButton _mmBtn;
@@ -24,7 +24,7 @@ public class TestRunner : EditorPlugin
2424
IsBeta = false,
2525
Name = "Simple Unit Testing",
2626
SupportedPlatforms = new PlatformType[] { PlatformType.Windows },
27-
Version = new Version(1, 1),
27+
Version = new Version(1, 2),
2828
RepositoryUrl = "https://github.com/FlaxCommunityProjects/FlaxUnitTesting"
2929
};
3030

UnitTests.Editor.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@
6161
<Compile Include="Cache\AssemblyInfo.cs" />
6262
<Compile Include="Source\Editor\Assert.cs" />
6363
<Compile Include="Source\Editor\ExampleClass.cs" />
64+
<Compile Include="Source\Editor\SimpleUnitTesting.cs" />
6465
<Compile Include="Source\Editor\TestAttributes.cs" />
6566
<Compile Include="Source\Editor\TestCaseData.cs" />
66-
<Compile Include="Source\Editor\TestRunner.cs" />
6767
</ItemGroup>
6868
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
6969
</Project>

0 commit comments

Comments
 (0)