Skip to content

Commit

Permalink
docs(dotnet): add missing TestClass attribute (#16663)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt authored Aug 19, 2022
1 parent 1154fff commit 14ac443
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/src/intro-csharp.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ using Microsoft.Playwright.MSTest;

namespace PlaywrightTests;

[TestClass]
public class UnitTest1 : PageTest
{
[TestMethod]
Expand Down
3 changes: 3 additions & 0 deletions docs/src/writing-tests-csharp.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ using Microsoft.Playwright.MSTest;

namespace PlaywrightTests;

[TestClass]
public class UnitTest1 : PageTest
{
[TestMethod]
Expand Down Expand Up @@ -153,6 +154,7 @@ using Microsoft.Playwright.MSTest;

namespace PlaywrightTests;

[TestClass]
public class UnitTest1 : PageTest
{
[TestMethod]
Expand Down Expand Up @@ -213,6 +215,7 @@ using Microsoft.Playwright.MSTest;

namespace PlaywrightTests;

[TestClass]
public class UnitTest1 : PageTest
{
[TestMethod]
Expand Down

0 comments on commit 14ac443

Please sign in to comment.