Skip to content

Commit 94f8035

Browse files
authored
Merge pull request #3 from egil/dev
Get docs rename updates.
2 parents ffbc120 + 5b554aa commit 94f8035

File tree

10 files changed

+8
-8
lines changed

10 files changed

+8
-8
lines changed

.github/workflows/CI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ jobs:
5959
dotnet new --install ${GITHUB_WORKSPACE}/packages/bunit.template.$VERSION.nupkg
6060
dotnet new bunit --no-restore -o ${GITHUB_WORKSPACE}/Test
6161
dotnet restore ${GITHUB_WORKSPACE}/Test/Test.csproj --source ${GITHUB_WORKSPACE}/packages
62-
dotnet test ${GITHUB_WORKSPACE}/Test
62+
dotnet test ${GITHUB_WORKSPACE}/Test

docs/site/docs/getting-started/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The *next level* topics are:
1717

1818
1. **[Providing different types of input](xref:providing-input)** to a component under test in C# based tests, e.g. passing parameters or injecting services.
1919
2. **[Verifying output in various ways](xref:verification)** from a component under test, e.g. inspecting the rendered markup.
20-
3. **[Mocking dependencies](xref:mocking)** a component under test has, e.g. the `IJsRuntime` or `HttpClient`.
20+
3. **[Mocking dependencies](xref:test-doubles)** a component under test has, e.g. the `IJsRuntime` or `HttpClient`.
2121

2222
## Getting Help
2323

docs/site/docs/providing-input/inject-services-into-components.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ In the following example shows how to do this with `<SnapshotTest>` tests:
4848
4949
## Further Reading
5050

51-
A closely related topic is mocking. To learn more about mocking in bUnit, go to the <xref:mocking> page.
51+
A closely related topic is mocking. To learn more about mocking in bUnit, go to the <xref:test-doubles> page.

docs/site/docs/mocking/mocking-auth.md renamed to docs/site/docs/test-doubles/faking-auth.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
uid: mocking-auth
3-
title: Mocking Blazor's Authorization
2+
uid: faking-auth
3+
title: Faking Blazor's Authorization
44
---
55

66
# Mocking Blazor's Authorization

docs/site/docs/mocking/index.md renamed to docs/site/docs/test-doubles/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
uid: mocking
3-
title: Mocking Component Dependencies
2+
uid: test-doubles
3+
title: Mocking and Faking Component Dependencies
44
---
55

66
# Mocking Component Dependencies

docs/site/docs/toc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
## [Customizing Semantic Comparison](xref:semantic-html-comparison)
2222
## [Asynchronous Assertion of Changes](xref:async-assertion)
2323

24-
# [Mocking](xref:mocking)
24+
# [Test Doubles](xref:test-doubles)
2525
## [Mocking Authorization](xref:mocking-auth)
2626
## [Mocking HttpClient](xref:mocking-httpclient)
2727
## [Mocking IJsRuntime](xref:mocking-ijsruntime)

0 commit comments

Comments
 (0)