Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/intellitect/testtools
A collection of tools for aiding in test automation
https://github.com/intellitect/testtools
console test-framework testing testing-tools
Last synced: 1 day ago
JSON representation
A collection of tools for aiding in test automation
- Host: GitHub
- URL: https://github.com/intellitect/testtools
- Owner: IntelliTect
- License: mit
- Created: 2016-05-24T16:59:59.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2023-03-29T15:38:21.000Z (over 1 year ago)
- Last Synced: 2024-11-05T23:43:17.064Z (2 days ago)
- Topics: console, test-framework, testing, testing-tools
- Language: C#
- Homepage:
- Size: 12.9 MB
- Stars: 10
- Watchers: 14
- Forks: 7
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
AspNetCore
==========Provides test helper classes for instantiating ASP.NET Core classes like RoleManager and UserManager.
Windows UI Test Wrapper
===========Provides wrappers for calling Microsoft's UiTestControl classes for WPF and WinForm applications in a more concise, reliable manner
Usage
-----
To use, inherit a class from the solution's DesktopControls class and make application-specific calls in the inherited class using generic types:
```
FindWpfControlByAutomationId( "textBoxControl1", c => new WpfEdit( c ) );
```Inherit a class from BaseTestInherit and set the ApplicationLocation and create a new field for the above inherited class.
Inherit test classes from the BaseTestInherit inherited class, and call methods via the new field.
Example projects at https://github.com/IntelliTect/TestTools