Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/intellitect/testtools.testframework
https://github.com/intellitect/testtools.testframework
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/intellitect/testtools.testframework
- Owner: IntelliTect
- License: mit
- Created: 2023-03-28T17:24:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-10T17:55:24.000Z (4 months ago)
- Last Synced: 2024-07-10T21:27:31.602Z (4 months ago)
- Language: C#
- Size: 11.1 MB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 13
-
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