This runner enables xUnit.net test to run on the K Runtime Environment.
To install this package, add the following to your project.json
{
    "dependencies": {
        "xunit": "2.0.0-*",
        "xunit.runner.kre": "1.0.0-*"
    },
    "commands": {
        "test": "xunit.runner.kre"
    }
}To run tests from the command line, use the following.
# Restore NuGet packages
kpm restore
# Run tests
k test