Skip to content

Commit

Permalink
Auto-fix Markdown files
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 13, 2023
1 parent 85e8f41 commit a9c5618
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 4 additions & 2 deletions rules/have-a-definition-of-ready/rule.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ A recommended “Definition of Ready” would be:
* Is in the Approved state

::: greybox
**Notes:**
1. PBIs can still be accepted into a Sprint even if they do not meet the DoR. When that happens, there will be more risk and uncertainty around the PBI, but this should not stop the team from doing the work. The recommendation is that PBI's are ready, but this is not mandatory.
**Notes:**

1. PBIs can still be accepted into a Sprint even if they do not meet the DoR. When that happens, there will be more risk and uncertainty around the PBI, but this should not stop the team from doing the work. The recommendation is that PBI's are ready, but this is not mandatory.
2. User Stories should follow the INVEST Principle:

* “I” ndependent (of all others)
* “N” egotiable (not a specific contract for features)
* “V” aluable (or vertical)
Expand Down
8 changes: 3 additions & 5 deletions rules/the-standard-naming-conventions-for-tests/rule.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ Ensuring a consistent and organized approach to testing is pivotal in any develo

> As well as keeping your code tidy, using this naming convention also allows you to use TestDriven.Net's 'Go To Test/Code' command.
> This navigates between your tests and code under test (and back). This is something that test-driven developers end up doing a lot.
> Screen captures at https://weblogs.asp.net/nunitaddin/testdriven-net-3-0-all-systems-go
> - Jamie Cansdale
> Screen captures at <https://weblogs.asp.net/nunitaddin/testdriven-net-3-0-all-systems-go>
>
> * Jamie Cansdale
<!--endintro-->

Expand All @@ -40,7 +41,6 @@ The main reason why we are categorizing tests is so that we can run different te
* Integration tests after each check in on the build server
* All tests including the functional tests in the nightly build


#### Samples for Naming of test projects

**Test.Unit.WebUI:** This test project, tests the WebUI project, and is independent of external resources.
Expand All @@ -57,7 +57,6 @@ That means if any external resource is unavailable, the tests will fail.

#### Samples Naming of test methods


```cs
[TestMethod]
public void Test_Client()
Expand All @@ -67,7 +66,6 @@ That means if any external resource is unavailable, the tests will fail.
Bad example: There is no way to guess what this test does; you have to read the source
:::


```cs
[TestMethod]
public void PubSubServiceConnectTest_AuctionOk_AuctionInfoReturned()
Expand Down

0 comments on commit a9c5618

Please sign in to comment.