Sha256: 723ff10aad8f4dcb1f3bdfe505cb591689f2831f5cee6f383ee1b0c127c31184

Contents?: true

Size: 1.5 KB

Versions: 127

Compression:

Stored size: 1.5 KB

Contents

## Running Tests

To run the tests, you first need to restore the project's dependencies using the following command:

```bash
dotnet restore
```

You can then run the tests by executing the following command:

```bash
dotnet test
```

Note: if the .NET CLI fails to detect your latest source code changes, please run the following command before running `dotnet test`:

```bash
dotnet clean
```

## Solving the exercise

Solving an exercise means making all its tests pass. By default, only one test (the first one) is executed when you run the tests. This is intentional, as it allows you to focus on just making that one test pass. Once it passes, you can enable the next test by removing `Skip = "Remove to run test"` from the test's `[Fact]` or `[Theory]` attribute. When all tests have been enabled and your implementation makes them all pass, you'll have solved the exercise!

To help you get started, each exercise comes with a stub implementation file. You can use this file as a starting point for building your solution. Feel free to remove or change this file if you think it is the right thing to do.

## Using packages

You should be able to solve most exercises without using any external packages. However, for the exercises where you do want to use an external package, you can add it to your project by running the following command:

```bash
dotnet add package <package-name>
```

Once the package has been added, you need to update the project's dependencies again to use it in your project:

```bash
dotnet restore
```

Version data entries

127 entries across 127 versions & 1 rubygems

Version Path
trackler-2.2.1.25 tracks/csharp/docs/TESTS.md
trackler-2.2.1.24 tracks/csharp/docs/TESTS.md
trackler-2.2.1.23 tracks/csharp/docs/TESTS.md
trackler-2.2.1.22 tracks/csharp/docs/TESTS.md
trackler-2.2.1.21 tracks/csharp/docs/TESTS.md
trackler-2.2.1.20 tracks/csharp/docs/TESTS.md
trackler-2.2.1.19 tracks/csharp/docs/TESTS.md
trackler-2.2.1.18 tracks/csharp/docs/TESTS.md
trackler-2.2.1.17 tracks/csharp/docs/TESTS.md
trackler-2.2.1.16 tracks/csharp/docs/TESTS.md
trackler-2.2.1.15 tracks/csharp/docs/TESTS.md
trackler-2.2.1.14 tracks/csharp/docs/TESTS.md
trackler-2.2.1.13 tracks/csharp/docs/TESTS.md
trackler-2.2.1.12 tracks/csharp/docs/TESTS.md
trackler-2.2.1.11 tracks/csharp/docs/TESTS.md
trackler-2.2.1.10 tracks/csharp/docs/TESTS.md
trackler-2.2.1.9 tracks/csharp/docs/TESTS.md
trackler-2.2.1.8 tracks/csharp/docs/TESTS.md
trackler-2.2.1.7 tracks/csharp/docs/TESTS.md
trackler-2.2.1.6 tracks/csharp/docs/TESTS.md