Skip to content

Commit

Permalink
Skipped not implemented tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyStewart committed Dec 14, 2014
1 parent 79f2d95 commit a9a80d5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion GildedRose.UnitTests/GildedRose.UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>GildedRose.UnitTests</RootNamespace>
<AssemblyName>GildedRose.UnitTests</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Expand Down
6 changes: 3 additions & 3 deletions GildedRose.UnitTests/GivenAConjuredItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ private Item updateFrom(int initialSellIn, int initialQuality)
return item;
}

[Fact]
[Fact(Skip="Not yet implemented")]
public void BeforeSellDate()
{
Item item = updateFrom(5, 10);
Expand All @@ -33,7 +33,7 @@ public void BeforeSellDateAtZeroQuality()
Assert.Equal(4, item.sellIn);
}

[Fact]
[Fact(Skip="Not yet implemented")]
public void OnSellDate()
{
Item item = updateFrom(0, 10);
Expand All @@ -49,7 +49,7 @@ public void OnSellDateAtZeroQuality()
Assert.Equal(-1, item.sellIn);
}

[Fact]
[Fact(Skip="Not yet implemented")]
public void AfterSellDate()
{
Item item = updateFrom(-10, 10);
Expand Down
2 changes: 1 addition & 1 deletion GildedRose/GildedRose.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>GildedRose</RootNamespace>
<AssemblyName>GildedRose</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Expand Down

0 comments on commit a9a80d5

Please sign in to comment.