The [Visual Studio Test](https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/test/vstest?view=azure-devops) task on Azure DevOps (fka TFS) has a list of files which are included or excluded.
The default list of test files of `Visual Studio Test` task
```terminal
**\*test*.dll
!**\obj\**
```
The filter above will include everything with `test` in the filename and will exclude (leading !) the content of the `obj` folder. The default filter will scan libraries with Te…