TestFx
TestFx copied to clipboard
Next Level Testing.
I'm a big fan of MSpec, but that project seems to be stagnating somewhat. More seriously, MSpec has no offering for UWP and .NET Core, which means I can't use...
Currently, the working directory is the path of the resharper plugin. This means, that if a test requires local files, it has to guess the full qualified path to its...
Most certainly because they are not marked as `static`.
Hi, I think your program is really what we need, but to make use of it we require the same options that MSpec provides: --exclude --include I don't know if...
I would be nice if there were support for html outputs like in MSpec with "--html {report}". According to https://github.com/matkoch/TestFx/issues/6, I could support this in a separate version.
Parallelizing tests is usually done by passing only a set of all test assemblies, or filtering them by namespace. I propose a different approach invoked by: ``` TestFx.exe --assemblies A.dll...
Should support: - Parallelized build steps in TeamCity - Publishing `master` to NuGet, and all other branches to MyGet
In order to make PR builds immediately available: - Add branch specification `+:refs/pull/*/head` according to the [blog post](https://blog.jetbrains.com/teamcity/2013/02/automatically-building-pull-requests-from-github-with-teamcity/) - Pack with id `-PR-` and publish to MyGet - Ensure that...
For better composition of categories/tags and test extensions: ``` [Description("Some description")] public class BaseCategoryAttribute : Attribute, ICategory { } [MoreGranularCategory] [Description("Some description")] public class MoreGranularCategoryAttribute : Attribute, ICategory { }...