Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Basic FAQ and Changing Integration Test Framework pages #325

Merged
merged 8 commits into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

## Improvements:

* Documentation on how to changing a unit test provider and a basic FAQ (just docs, no code changes).

## Bug fixes:

*Contributors of this release (in alphabetical order):*
*Contributors of this release (in alphabetical order): @melchiork

# v2.2.1 - 2024-11-08

Expand Down
10 changes: 5 additions & 5 deletions docs/guides/how-to-change-test-execution-framework.md
melchiork marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# How to change the test execution framework used by Reqnroll

% TODO
```{admonition} Documentation is in progress
:class: warning
To change the test execution framework, reference the relevant NuGet Reqnroll package. For details see:
* [xUnit](../integrations/xunit.md)
* [NUnit](../integrations/nunit.md)
* [MSTest](../integrations/mstest.md)

This documentation page is in progress. Please come back later or help contributing to it in out [open-source GitHub project](https://github.com/reqnroll/Reqnroll).
```
Only one test execution framework can be referenced by a Reqnroll project at a given time.
31 changes: 26 additions & 5 deletions docs/help/faq.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,29 @@
# Frequently Asked Questions

% TODO
```{admonition} Documentation is in progress
:class: warning
**What is Reqnroll?**

This documentation page is in progress. Please come back later or help contributing to it in out [open-source GitHub project](https://github.com/reqnroll/Reqnroll).
```
[Reqnroll](../index.md) is an open-source .NET test automation tool to practice Behavior Driven Development (BDD).

**Is Reqnroll a replacement of SpecFlow?**

Yes. Reqnroll was forked from SpecFlow and it constantly being extended and fixed. Last commit to SpecFlow GitHub repo happened in 2022.

**What license does Reqnroll use?**

BSD 3-Clause License.

**What is BDD?**

BDD stands for [Behavior Driven Development](https://en.wikipedia.org/wiki/Behavior-driven_development).

**How can I contribute?**

Reqnroll code is hosted in GitHub, constributors are welcome - see [CONTRIBUTING.md](https://github.com/reqnroll/Reqnroll/blob/main/CONTRIBUTING.md) for details.

**Which .NET versions are supported?**

All modern-ish versions of .NET and .NET Framework are [compatible](../installation/compatibility.md).

**Where can I found Reqnroll NuGet packages?**

In the [official NuGet](https://www.nuget.org/profiles/Reqnroll).
Loading