forked from x97mdr/pickles
-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
149 changed files
with
10,236 additions
and
3,850 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
@echo off | ||
set "picklesVersion=2.3.0" | ||
set "picklesVersion=2.4.0" | ||
|
||
cls | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/Pickles/Examples/Features/00BasicGherkin/BasicGherkin.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/Pickles/Pickles.ObjectModel/Pickles.ObjectModel.v2.ncrunchproject
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<ProjectConfiguration> | ||
<AutoDetectNugetBuildDependencies>true</AutoDetectNugetBuildDependencies> | ||
<BuildPriority>1000</BuildPriority> | ||
<CopyReferencedAssembliesToWorkspace>false</CopyReferencedAssembliesToWorkspace> | ||
<ConsiderInconclusiveTestsAsPassing>false</ConsiderInconclusiveTestsAsPassing> | ||
<PreloadReferencedAssemblies>false</PreloadReferencedAssemblies> | ||
<AllowDynamicCodeContractChecking>true</AllowDynamicCodeContractChecking> | ||
<AllowStaticCodeContractChecking>false</AllowStaticCodeContractChecking> | ||
<AllowCodeAnalysis>false</AllowCodeAnalysis> | ||
<IgnoreThisComponentCompletely>false</IgnoreThisComponentCompletely> | ||
<RunPreBuildEvents>false</RunPreBuildEvents> | ||
<RunPostBuildEvents>false</RunPostBuildEvents> | ||
<PreviouslyBuiltSuccessfully>true</PreviouslyBuiltSuccessfully> | ||
<InstrumentAssembly>true</InstrumentAssembly> | ||
<PreventSigningOfAssembly>false</PreventSigningOfAssembly> | ||
<AnalyseExecutionTimes>true</AnalyseExecutionTimes> | ||
<DetectStackOverflow>true</DetectStackOverflow> | ||
<IncludeStaticReferencesInWorkspace>true</IncludeStaticReferencesInWorkspace> | ||
<DefaultTestTimeout>60000</DefaultTestTimeout> | ||
<UseBuildConfiguration /> | ||
<UseBuildPlatform /> | ||
<ProxyProcessPath /> | ||
<UseCPUArchitecture>AutoDetect</UseCPUArchitecture> | ||
<MSTestThreadApartmentState>STA</MSTestThreadApartmentState> | ||
<BuildProcessArchitecture>x86</BuildProcessArchitecture> | ||
</ProjectConfiguration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
src/Pickles/Pickles.Test/DocumentationBuilders/Word/WordDescriptionFormatterTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
// <copyright file="WordDescriptionFormatterTests.cs" company="PicklesDoc"> | ||
// Copyright 2011 Jeffrey Cameron | ||
// Copyright 2012-present PicklesDoc team and community contributors | ||
// | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// </copyright> | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
|
||
using System; | ||
|
||
using NFluent; | ||
|
||
using NUnit.Framework; | ||
|
||
using PicklesDoc.Pickles.DocumentationBuilders.Word; | ||
|
||
namespace PicklesDoc.Pickles.Test.DocumentationBuilders.Word | ||
{ | ||
[TestFixture] | ||
public class WordDescriptionFormatterTests | ||
{ | ||
[Test] | ||
public void SplitDescription_NullArgument_DoesNotThrowException() | ||
{ | ||
Check.ThatCode(() => WordDescriptionFormatter.SplitDescription(null)) | ||
.DoesNotThrow(); | ||
} | ||
|
||
[Test] | ||
public void SplitDescription_NullArgument_ReturnsEmptyArgument() | ||
{ | ||
string[] descriptions = WordDescriptionFormatter.SplitDescription(null); | ||
|
||
Check.That(descriptions.Length).IsEqualTo(0); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.