Skip to content

Commit

Permalink
move all Unit tests to the Unit namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
eugeniomiro committed Dec 21, 2020
1 parent 1fa54fa commit ea50767
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 deletions Bonobo.Git.Server.Test/Bonobo.Git.Server.Test.csproj
Expand Up @@ -159,16 +159,16 @@
<Compile Include="MembershipTests\MembershipServiceTestBase.cs" />
<Compile Include="MembershipTests\EFTests\SqliteTestConnection.cs" />
<Compile Include="MembershipTests\EFTests\SqlServerTestConnection.cs" />
<Compile Include="UnitTests\CustomHtmlHelperTest.cs" />
<Compile Include="UnitTests\DatabaseUpdateTestsSqlite.cs" />
<Compile Include="UnitTests\DatabaseUpdateTestsSqlServer.cs" />
<Compile Include="UnitTests\PathEncoderTest.cs" />
<Compile Include="Unit\CustomHtmlHelperTest.cs" />
<Compile Include="Unit\DatabaseUpdateTestsSqlite.cs" />
<Compile Include="Unit\DatabaseUpdateTestsSqlServer.cs" />
<Compile Include="Unit\PathEncoderTest.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TestCategories.cs" />
<Compile Include="UnitTests\PasswordServiceTest.cs" />
<Compile Include="UnitTests\GitAuthorizeAttributeTest.cs" />
<Compile Include="UnitTests\UserExtensionsTests.cs" />
<Compile Include="UnitTests\UserModelTest.cs" />
<Compile Include="Unit\PasswordServiceTest.cs" />
<Compile Include="Unit\GitAuthorizeAttributeTest.cs" />
<Compile Include="Unit\UserExtensionsTests.cs" />
<Compile Include="Unit\UserModelTest.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Bonobo.Git.Server\Bonobo.Git.Server.csproj">
Expand Down
Expand Up @@ -4,7 +4,7 @@
using Bonobo.Git.Server.Helpers;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace Bonobo.Git.Server.Test.UnitTests
namespace Bonobo.Git.Server.Test.Unit
{
[TestClass]
public class CustomHtmlHelperTest
Expand Down
Expand Up @@ -4,7 +4,7 @@
using Bonobo.Git.Server.Data.Update;
using Bonobo.Git.Server.Data;

namespace Bonobo.Git.Server.Test.UnitTests
namespace Bonobo.Git.Server.Test.Unit
{
[TestClass]
public class DatabaseUpdateTestsSqlServer
Expand Down
Expand Up @@ -4,7 +4,7 @@
using Bonobo.Git.Server.Data.Update;
using Bonobo.Git.Server.Data;

namespace Bonobo.Git.Server.Test.UnitTests
namespace Bonobo.Git.Server.Test.Unit
{
[TestClass]
public class DatabaseUpdateTestsSqlite
Expand Down
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;
using System.Linq;

namespace Bonobo.Git.Server.Test.UnitTests
namespace Bonobo.Git.Server.Test.Unit
{
[TestClass]
public class UserExtensionsTests
Expand Down
@@ -1,7 +1,7 @@
using Bonobo.Git.Server.Models;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace Bonobo.Git.Server.Test.UnitTests
namespace Bonobo.Git.Server.Test.Unit
{
[TestClass]
public sealed class UserModelTest
Expand Down

0 comments on commit ea50767

Please sign in to comment.