Skip to content

Commit

Permalink
Add shared help and tests doc
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom committed Jul 14, 2021
1 parent 24b57d3 commit 051c15d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 28 deletions.
24 changes: 0 additions & 24 deletions config/exercise_readme.go.tmpl

This file was deleted.

7 changes: 7 additions & 0 deletions exercises/shared/.docs/help.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Help

To get help if you're having trouble, you can use one of the following resources:

- [Gitter](https://gitter.im/exercism/xcsharp) is Exercism C# track's Gitter room; go here to get support and ask questions related to the C# track.
- [/r/csharp](https://www.reddit.com/r/csharp) is the C# subreddit.
- [StackOverflow](http://stackoverflow.com/questions/tagged/c%23) can be used to search for your problem and see if it has been answered already. You can also ask and answer questions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# CLI
# Tests

You can run the tests by opening a command prompt in the exercise's directory, and then running the [`dotnet test` command][docs-dotnet-test]. Alternatively, most IDE's have built-in support for running tests, including [Visual Studio][docs-run-unit-tests-visual-studio], [Rider][docs-run-unit-tests-rider] and [Visual Studio code][docs-run-unit-tests-visual-studio-code].
You can run the tests by opening a command prompt in the exercise's directory, and then running the [`dotnet test` command][docs-dotnet-test]. Alternatively, most IDE's have built-in support for running tests, including [Visual Studio][docs-run-unit-tests-visual-studio], [Rider][docs-run-unit-tests-rider] and [Visual Studio code][docs-run-unit-tests-visual-studio-code]. See the [tests page](https://exercism.io/tracks/csharp/tests) for more information.

Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time. Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
## Skipped tests

Once none of the tests are skipped and they are all passing, you can submit your solution by opening a command prompt in the exercise's directory and running the [`exercism submit` command][docs-exercism-cli].
Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time. Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.

[docs-dotnet-test]: https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-test?tabs=netcore21
[docs-exercism-cli]: https://exercism.io/cli
Expand Down

0 comments on commit 051c15d

Please sign in to comment.