Skip to content

Commit 1d3f716

Browse files
committed
Updated README.md and moved images to the solution.
1 parent 27fd93e commit 1d3f716

6 files changed

Lines changed: 14 additions & 7 deletions

File tree

Docs/images/AAA.png

30 KB
Loading

Docs/images/BDD.png

55.2 KB
Loading

Heleonix.Testing.sln

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{783E9705
2121
EndProject
2222
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Heleonix.Testing.NUnit.Tests", "Heleonix.Testing.NUnit.Tests\Heleonix.Testing.NUnit.Tests.csproj", "{D9F8D146-C245-4F6E-8DE2-45738659BA83}"
2323
EndProject
24+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Docs", "Docs", "{5334635D-74B4-48B3-AEB7-EF04B0887CAB}"
25+
EndProject
26+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "images", "images", "{E4223876-529E-4757-98A2-97D488BD32B3}"
27+
ProjectSection(SolutionItems) = preProject
28+
Docs\images\AAA.png = Docs\images\AAA.png
29+
Docs\images\BDD.png = Docs\images\BDD.png
30+
EndProjectSection
31+
EndProject
2432
Global
2533
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2634
Debug|Any CPU = Debug|Any CPU
@@ -42,6 +50,7 @@ Global
4250
GlobalSection(NestedProjects) = preSolution
4351
{36AD64B1-92AD-4BCE-931E-FBEC6C655E3F} = {4AEAF240-3ED0-49D3-B054-27402285220A}
4452
{D9F8D146-C245-4F6E-8DE2-45738659BA83} = {783E9705-9D30-414A-956F-DBDCB06F3ACA}
53+
{E4223876-529E-4757-98A2-97D488BD32B3} = {5334635D-74B4-48B3-AEB7-EF04B0887CAB}
4554
EndGlobalSection
4655
GlobalSection(ExtensibilityGlobals) = postSolution
4756
SolutionGuid = {710E8CFD-309B-4054-9763-4649C9D5E58C}

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Heleonix.Testing
2-
The library for writing tests in BDD and AAA style
2+
The library for writing tests in BDD and AAA styles
33

44
## Install
55
https://www.nuget.org/packages/Heleonix.Testing.NUnit
@@ -49,7 +49,7 @@ public static class ComponentTests
4949
```
5050

5151
#### Tests Output
52-
![AAA](https://github.com/Heleonix/heleonix.github.io/blob/master/images/AAA.png)
52+
![AAA](Docs/images/AAA.png)
5353

5454
## BDD: Behavior Driven Development
5555

@@ -60,8 +60,6 @@ using static Heleonix.Testing.NUnit.Bdd.BddSpec;
6060

6161
[Feature(Name = "Feature")]
6262
OR
63-
[Scenario(Name = "Some scenarion")]
64-
OR
6563
[Story(
6664
Id = "111",
6765
Summary = "The cool story",
@@ -151,4 +149,4 @@ public static class TheCoolStory
151149
```
152150

153151
#### Tests Output
154-
![BDD](https://github.com/Heleonix/heleonix.github.io/blob/master/images/BDD.png)
152+
![BDD](Docs/images/BDD.png)

SharedAssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System.Resources;
88
using System.Runtime.InteropServices;
99

10-
[assembly: AssemblyDescription("The library for writing tests in BDD and AAA style")]
10+
[assembly: AssemblyDescription("The library for writing tests in BDD and AAA styles")]
1111
[assembly: AssemblyCompany("Heleonix - Hennadii Lutsyshyn")]
1212
[assembly: AssemblyProduct("Heleonix.Testing")]
1313
[assembly: AssemblyCopyright("Copyright (c) 2018-present Heleonix - Hennadii Lutsyshyn")]

SharedProjectInfo.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Version>1.2.0</Version>
44
<PackageReleaseNotes>Added NUnit 3.9.0 as a dependency package</PackageReleaseNotes>
55

6-
<Description>The library for writing tests in BDD and AAA style</Description>
6+
<Description>The library for writing tests in BDD and AAA styles</Description>
77
<PackageTags>Heleonix test nunit bdd behavior driven development tdd test driven development aaa arrange act assert</PackageTags>
88

99
<Authors>Heleonix - Hennadii Lutsyshyn</Authors>

0 commit comments

Comments
 (0)