Skip to content

Commit

Permalink
Fixing code
Browse files Browse the repository at this point in the history
  • Loading branch information
yanjustino committed May 3, 2021
1 parent 20063e9 commit 548f618
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
Binary file modified doc/img/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/Gwtdo/Gwtdo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<RepositoryUrl>https://github.com/8T4/gwtdo</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>GWT, tests, BDD</PackageTags>
<PackageVersion>1.0.5</PackageVersion>
<PackageVersion>2.0.0</PackageVersion>
<PackageIconUrl>https://github.com/8T4/gwtdo/blob/main/LICENSE</PackageIconUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
Expand Down
1 change: 0 additions & 1 deletion src/samples/Gwtdo.Sample.Test/Gwtdo.Sample.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
<ItemGroup>
<ProjectReference Include="..\..\Gwtdo\Gwtdo.csproj" />
<ProjectReference Include="..\Gwtdo.Sample\Gwtdo.Sample.csproj" />
<ProjectReference Include="..\Gwtdo\Gwtdo.csproj" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/samples/Gwtdo.Sample.Test/JustCode/Fixtures.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using FluentAssertions;
using Gwtdo.Sample.Stocks;

namespace Gwtdo.Sample.Test.Stocks
namespace Gwtdo.Sample.Test.JustCode
{
using arrange = Arrange<StockFixture>;
using act = Act<StockFixture>;
Expand Down
7 changes: 3 additions & 4 deletions src/samples/Gwtdo.Sample.Test/JustCode/Tests.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Gwtdo.Sample.Stocks;
using Gwtdo.Sample.Test.Stocks;
using Xunit;

namespace Gwtdo.Sample.Test.JustCode
Expand All @@ -11,9 +10,9 @@ public class UserTradesStocks : Feature<StockFixture>
[Fact]
public void user_requests_a_sell()
{
Given.I_have_100_shares_of_MSFT_stock();
When.I_ask_to_sell_20_shares_of_MSFT_stock();
Then.I_should_have_80_shares_of_MSFT_stock();
GIVEN.I_have_100_shares_of_MSFT_stock();
WHEN.I_ask_to_sell_20_shares_of_MSFT_stock();
THEN.I_should_have_80_shares_of_MSFT_stock();
}

[Fact]
Expand Down

0 comments on commit 548f618

Please sign in to comment.