Skip to content

Commit c593546

Browse files
committed
Adding a few more ADR containers
1 parent 265e044 commit c593546

13 files changed

+56
-7
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Support for Extension Methods (WIP)
2+
3+
Extension methods are not supported due to their nature. Extension methods are static methods that are called as if they were instance methods of the extended type.
4+
5+
Work in progress.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Support for Sealed Classes (WIP)
2+
3+
Sealed classes are not supported due to the way the framework works.
4+
5+
Work in progress.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Support for Static Members (WIP)
2+
3+
Static members are not supported due to the way the framework works.
4+
5+
Work in progress.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Support for Abstract Classes (WIP)
2+
3+
Abstract classes are supported to a limited extent. The framework will allow mocking of abstract classes, but only if the abstract class has a public or protected constructor with no parameters.
4+
Support for abstract classes with constructors that have parameters will be supported in the future.
5+
6+
Work in progress.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Support for Asynchronous Methods (WIP)
2+
3+
Asynchronous methods are supported. Helper methods are provided to simplify the testing of asynchronous methods.
4+
5+
Work in progress.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Support for Delegates (WIP)
2+
3+
Work in progress.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Support for Generic Methods (WIP)
2+
3+
Generic methods are supported.
4+
The generic type is passed as a type parameter to the 'call' labmda method.
5+
6+
Work in progress.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Support for Internal Methods (WIP)
2+
3+
Internal members are supported for mock targets where InternalsVisibleToAttribute is used.
4+
5+
Work in progress.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Support for Out and Ref Parameters (WIP)
2+
3+
Out and ref parameters are supported.
4+
5+
Work in progress.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Support for Overloads (WIP)
2+
3+
Overloads are supported.
4+
5+
Work in progress.

0 commit comments

Comments
 (0)