Rename "Primer.md" to "primer.md" and adjust links. Part of the documentaion rationalzation

This commit is contained in:
Gennadiy Civil
2018-06-11 11:26:16 -04:00
parent 98a0d007d7
commit de47b0d30c
7 changed files with 15 additions and 15 deletions

View File

@@ -349,7 +349,7 @@ You can make a matcher from one or more other matchers:
## Matchers as Test Assertions ##
|`ASSERT_THAT(expression, m)`|Generates a [fatal failure](../../googletest/docs/Primer.md#assertions) if the value of `expression` doesn't match matcher `m`.|
|`ASSERT_THAT(expression, m)`|Generates a [fatal failure](../../googletest/docs/primer.md#assertions) if the value of `expression` doesn't match matcher `m`.|
|:---------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------|
|`EXPECT_THAT(expression, m)`|Generates a non-fatal failure if the value of `expression` doesn't match matcher `m`. |