Skip to content

Commit

Permalink
Cleaned up tests
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinsmialek committed Oct 19, 2019
1 parent 9d208a3 commit d1e9782
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,4 @@ nuspec/**
# Auto-generated XML documentation
Source/Cake.Paket.Addin/Cake.Paket.Addin.xml
Source/Cake.Paket.Module/Cake.Paket.Module.xml
Source/Cake.Paket.UnitTests/Cake.Paket.UnitTests.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ internal PaketPackerFixture()
private ICakeArguments FakeArguments { get; }

/// <summary>
/// Runs PaketPacker tool
/// Runs PaketPacker tool.
/// </summary>
protected override void RunTool()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace Cake.Paket.UnitTests.Cake.Paket.Addin.Pack
{
/// <summary>
/// PaketPacker unit tests
/// PaketPacker unit tests.
/// </summary>
public sealed class PaketPackerTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ internal PaketPusherFixture()
private ICakeArguments FakeArguments { get; }

/// <summary>
/// Runs PaketPusher tool
/// Runs PaketPusher tool.
/// </summary>
protected override void RunTool()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
namespace Cake.Paket.UnitTests.Cake.Paket.Addin.Push
{
/// <summary>
/// PaketPusher unit tests
/// PaketPusher unit tests.
/// </summary>
public sealed class PaketPusherTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
namespace Cake.Paket.UnitTests.Cake.Paket.Module
{
/// <summary>
/// PaketPackageInstaller unit tests
/// PaketPackageInstaller unit tests.
/// </summary>
public sealed class PaketPackageInstallerTests
{
Expand Down
8 changes: 8 additions & 0 deletions Source/Cake.Paket.UnitTests/Cake.Paket.UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<DebugType>Full</DebugType>
<IsPackable>false</IsPackable>
<DocumentationFile>$(OutputPath)$(AssemblyName).xml</DocumentationFile>
<!--
CS1573: Parameter 'parameter' has no matching param tag in the XML comment for 'parameter' (but other parameters do).
CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'.
CS1712: Type parameter 'type_parameter' has no matching typeparam tag in the XML comment on 'type_or_member' (but other type parameters do)
SA1600: A C# code element is missing a documentation header.
-->
<NoWarn>$(NoWarn),1573,1591,1712,SA1600</NoWarn>
<CodeAnalysisRuleSet>..\Cake.Paket.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
Expand Down

0 comments on commit d1e9782

Please sign in to comment.