Skip to content

Commit

Permalink
Merge pull request #1 from gsoft-inc/feature/rebranding
Browse files Browse the repository at this point in the history
Rebranding
  • Loading branch information
asimmon authored Jun 9, 2022
2 parents 5efe958 + 039aa80 commit 3ff728d
Show file tree
Hide file tree
Showing 15 changed files with 22 additions and 17 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# GSoft.Xunit.Extensions
# ShareGate.Extensions.Xunit

An opinionated library that provides base unit test and fixture classes based on the `Microsoft.Extensions.*` packages used by modern .NET applications.

[![nuget](https://img.shields.io/nuget/v/GSoft.Xunit.Extensions.svg?logo=nuget)](https://www.nuget.org/packages/GSoft.Xunit.Extensions/)
[![build](https://img.shields.io/github/workflow/status/gsoft-inc/gsoft-xunit-extensions/CI%20build?logo=github)](https://github.com/gsoft-inc/gsoft-xunit-extensions/actions/workflows/ci.yml)
[![nuget](https://img.shields.io/nuget/v/ShareGate.Extensions.Xunit.svg?logo=nuget)](https://www.nuget.org/packages/ShareGate.Extensions.Xunit/)
[![build](https://img.shields.io/github/workflow/status/gsoft-inc/sg-extensions-xunit/CI%20build?logo=github)](https://github.com/gsoft-inc/sg-extensions-xunit/actions/workflows/ci.yml)


## Getting started
Expand Down
2 changes: 1 addition & 1 deletion build/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
public static class Constants
{
public const string Release = "Release";
public const string ProjectName = "GSoft.Xunit.Extensions";
public const string ProjectName = "ShareGate.Extensions.Xunit";

public static readonly string SourceDirectoryPath = Path.Combine("..", "src");
public static readonly string OutputDirectoryPath = Path.Combine("..", ".output");
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Copyright>Copyright © Groupe GSoft inc. $([System.DateTime]::UtcNow.ToString(yyyy))</Copyright>
<Authors>Anthony Simmon</Authors>
<Owners>Groupe GSoft inc.</Owners>
<PackageProjectUrl>https://github.com/gsoft-inc/gsoft-xunit-extensions</PackageProjectUrl>
<PackageProjectUrl>https://github.com/gsoft-inc/sg-extensions-xunit</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<LangVersion>10</LangVersion>
<Nullable>enable</Nullable>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30114.105
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GSoft.Xunit.Extensions", "GSoft.Xunit.Extensions\GSoft.Xunit.Extensions.csproj", "{C71B3436-583A-4F7F-8045-91D3926C993B}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ShareGate.Extensions.Xunit", "ShareGate.Extensions.Xunit\ShareGate.Extensions.Xunit.csproj", "{C71B3436-583A-4F7F-8045-91D3926C993B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "files", "files", "{044A4D97-4907-47A6-AB82-565F838FF3A7}"
ProjectSection(SolutionItems) = preProject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using Microsoft.Extensions.FileProviders;
using Microsoft.Extensions.Hosting;

namespace GSoft.Xunit.Extensions;
namespace ShareGate.Extensions.Xunit;

public abstract class BaseIntegrationFixture : BaseUnitFixture
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace GSoft.Xunit.Extensions;
namespace ShareGate.Extensions.Xunit;

public abstract class BaseIntegrationTest : BaseIntegrationTest<EmptyIntegrationFixture>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;

namespace GSoft.Xunit.Extensions;
namespace ShareGate.Extensions.Xunit;

public class BaseUnitFixture : IConfigureServiceCollection, IHasXUnitOutput, IDisposable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;

namespace GSoft.Xunit.Extensions;
namespace ShareGate.Extensions.Xunit;

public abstract class BaseUnitTest : BaseUnitTest<EmptyUnitFixture>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace GSoft.Xunit.Extensions;
namespace ShareGate.Extensions.Xunit;

public sealed class EmptyIntegrationFixture : BaseIntegrationFixture
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace GSoft.Xunit.Extensions;
namespace ShareGate.Extensions.Xunit;

public sealed class EmptyUnitFixture : BaseUnitFixture
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Microsoft.Extensions.DependencyInjection;

namespace GSoft.Xunit.Extensions;
namespace ShareGate.Extensions.Xunit;

public interface IConfigureServiceCollection
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace GSoft.Xunit.Extensions;
namespace ShareGate.Extensions.Xunit;

public interface IHasXUnitOutput
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
<IsPackable>True</IsPackable>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<AssemblyTitle>GSoft.Xunit.Extensions</AssemblyTitle>
<PackageId>GSoft.Xunit.Extensions</PackageId>
<AssemblyTitle>ShareGate.Extensions.Xunit</AssemblyTitle>
<PackageId>ShareGate.Extensions.Xunit</PackageId>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
Expand All @@ -24,4 +25,8 @@
<Using Include="Xunit" />
<Using Include="Xunit.Abstractions" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\README.md" Link="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using Microsoft.Extensions.Logging;

namespace GSoft.Xunit.Extensions;
namespace ShareGate.Extensions.Xunit;

internal sealed class XunitLoggerProvider : ILoggerProvider, ILogger
{
Expand Down

0 comments on commit 3ff728d

Please sign in to comment.