Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jtwebman/generictestprojectgenerator
Will take a CSV file with test name, and command to run, and generate a generic c# test project calling the command.
https://github.com/jtwebman/generictestprojectgenerator
Last synced: 11 days ago
JSON representation
Will take a CSV file with test name, and command to run, and generate a generic c# test project calling the command.
- Host: GitHub
- URL: https://github.com/jtwebman/generictestprojectgenerator
- Owner: jtwebman
- License: mit
- Created: 2014-09-08T18:14:04.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-09-08T19:05:59.000Z (about 10 years ago)
- Last Synced: 2023-03-12T08:19:01.429Z (over 1 year ago)
- Language: C#
- Size: 137 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
GenericTestProjectGenerator
===========================Will take a CSV file with test name, and command to run, and generate a generic c# test project calling the command.
Command line options:
Option | Description
-------|------------
-c, --csv | Required. Two columned csv file, example: TestName,TextBatchfile.bat
-n, --projectname | Required. The name you want to use for the project.
-p, --projectpath | Project path, will create if doesn't exist. Will default to current path with a new folder for the project.
-m, --commandpath | The path to add onto the test commands in the CSV file. Will default to nothing and you should try using relative paths.
-t, --templatepath | Template file path, will create if doesn't exist. Will default to current path the exe is running from.
--help | Display this help screen.The CSV is a very basic format with the headers:
|Test Name | Command To Run |
|----------|----------------|
|Test1 | Test1.bat |
|Test2 | Test2.bat |