Skip to content

Commit

Permalink
Merge pull request #5 from FlaxCommunityProjects/dev
Browse files Browse the repository at this point in the history
 Rename TestRunner to SimpleUnitTesting
  • Loading branch information
stefnotch authored Nov 4, 2019
2 parents c98f883 + 5ae661d commit ef801d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace FlaxCommunity.UnitTesting.Editor
{
public class TestRunner : EditorPlugin
public class SimpleUnitTesting : EditorPlugin
{
private static readonly List<Type> _suites = new List<Type>();
private MainMenuButton _mmBtn;
Expand All @@ -24,7 +24,7 @@ public class TestRunner : EditorPlugin
IsBeta = false,
Name = "Simple Unit Testing",
SupportedPlatforms = new PlatformType[] { PlatformType.Windows },
Version = new Version(1, 1),
Version = new Version(1, 2),
RepositoryUrl = "https://github.com/FlaxCommunityProjects/FlaxUnitTesting"
};

Expand Down
2 changes: 1 addition & 1 deletion UnitTests.Editor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
<Compile Include="Cache\AssemblyInfo.cs" />
<Compile Include="Source\Editor\Assert.cs" />
<Compile Include="Source\Editor\ExampleClass.cs" />
<Compile Include="Source\Editor\SimpleUnitTesting.cs" />
<Compile Include="Source\Editor\TestAttributes.cs" />
<Compile Include="Source\Editor\TestCaseData.cs" />
<Compile Include="Source\Editor\TestRunner.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

0 comments on commit ef801d1

Please sign in to comment.