Skip to content

Commit

Permalink
bou-1 - renamed to Bounteous.xUnit.Accelarator
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Cook committed Feb 18, 2025
1 parent 178434f commit 92212b2
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 23 deletions.
20 changes: 10 additions & 10 deletions Bounteous.DotNet.Test.sln → Bounteous.xUnit.Accelerator.sln
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{
.github\workflows\ci-build.yml = .github\workflows\ci-build.yml
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bounteous.DotNet.Test.Essentials", "src\Bounteous.DotNet.Test.Essentials\Bounteous.DotNet.Test.Essentials.csproj", "{AFED2D15-D1BB-438C-93A4-5292783DCA29}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bounteous.xUnit.Accelerator", "src\Bounteous.xUnit.Accelerator\Bounteous.xUnit.Accelerator.csproj", "{1D831200-B52C-49D8-BBB4-3453CE8D0A22}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bounteous.DotNet.Test.Essentials.Tests", "src\Bounteous.DotNet.Test.Essentials.Tests\Bounteous.DotNet.Test.Essentials.Tests.csproj", "{20851C27-44B7-4580-A7FB-915E2AC40D8E}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bounteous.xUnit.Accelerator.Tests", "src\Bounteous.xUnit.Accelarator.Tests\Bounteous.xUnit.Accelerator.Tests.csproj", "{E53E7186-D017-46B4-952F-1DE63D597211}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{AFED2D15-D1BB-438C-93A4-5292783DCA29}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AFED2D15-D1BB-438C-93A4-5292783DCA29}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AFED2D15-D1BB-438C-93A4-5292783DCA29}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AFED2D15-D1BB-438C-93A4-5292783DCA29}.Release|Any CPU.Build.0 = Release|Any CPU
{20851C27-44B7-4580-A7FB-915E2AC40D8E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{20851C27-44B7-4580-A7FB-915E2AC40D8E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{20851C27-44B7-4580-A7FB-915E2AC40D8E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{20851C27-44B7-4580-A7FB-915E2AC40D8E}.Release|Any CPU.Build.0 = Release|Any CPU
{1D831200-B52C-49D8-BBB4-3453CE8D0A22}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1D831200-B52C-49D8-BBB4-3453CE8D0A22}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1D831200-B52C-49D8-BBB4-3453CE8D0A22}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1D831200-B52C-49D8-BBB4-3453CE8D0A22}.Release|Any CPU.Build.0 = Release|Any CPU
{E53E7186-D017-46B4-952F-1DE63D597211}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E53E7186-D017-46B4-952F-1DE63D597211}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E53E7186-D017-46B4-952F-1DE63D597211}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E53E7186-D017-46B4-952F-1DE63D597211}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{2F4A52AA-1734-4DD9-BB1D-EDB79384C021} = {334FC470-5D19-4FD8-8973-20FC33D8C00B}
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Xerris.DotNet.Test
# Bounteous.xUnit.Accelerator

A collection of test utilities and helper classes to streamline writing unit tests.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Bounteous.Core" Version="0.0.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0">
Expand All @@ -24,8 +25,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Bounteous.DotNet.Test.Essentials\Bounteous.DotNet.Test.Essentials.csproj" />
<ProjectReference Include="..\Xerris.DotNet.Test.Essentials\Xerris.DotNet.Test.Essentials.csproj" />
<ProjectReference Include="..\Bounteous.xUnit.Accelerator\Bounteous.xUnit.Accelerator.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Threading.Tasks;

namespace Bounteous.DotNet.Test.Essentials.Tests
namespace Bounteous.xUnit.Accelerator.Tests
{
public class Client(IService service)
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace Bounteous.DotNet.Test.Essentials.Tests
namespace Bounteous.xUnit.Accelerator.Tests
{
public class Customer
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Threading.Tasks;

namespace Bounteous.DotNet.Test.Essentials.Tests
namespace Bounteous.xUnit.Accelerator.Tests
{
public interface IService
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Threading.Tasks;
using Bounteous.Core.Validations;
using Moq;
using Xerris.DotNet.Core.Validations;
using Xunit;

namespace Bounteous.DotNet.Test.Essentials.Tests
namespace Bounteous.xUnit.Accelerator.Tests
{
public class MockBaseTest : MockBase
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Bounteous.DotNet.Test.Essentials.Tests
namespace Bounteous.xUnit.Accelerator.Tests
{
public class Request
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Version>0.0.1</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Bounteous.Core" Version="0.0.2" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="Xerris.DotNet.Core" Version="0.1.19" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace Bounteous.DotNet.Test.Essentials.Factory
namespace Bounteous.xUnit.Accelerator.Factory
{
public static class FactoryExtensions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Collections.Generic;
using System.Threading;

namespace Bounteous.DotNet.Test.Essentials.Factory;
namespace Bounteous.xUnit.Accelerator.Factory;

public static class FactoryGirl
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using Moq;

namespace Bounteous.DotNet.Test.Essentials
namespace Bounteous.xUnit.Accelerator
{
public abstract class MockBase : IDisposable
{
Expand Down

0 comments on commit 92212b2

Please sign in to comment.