You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: BREAKING_CHANGES.md
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,28 @@
1
+
# Version 3.0.0
2
+
3
+
## ShouldRedirectTo Method
4
+
5
+
It used to be the case that when you invoked `ShouldRedirectTo<TController>` where `TController` is the same type as the `Controller` under test like this:
an `ActionResultAssertionException` would be thrown.
12
+
13
+
An exception is no longer thrown.
14
+
15
+
### Reason
16
+
17
+
There is no reason why a test like this one should fail.
18
+
19
+
You can read the original problem specification and discussion [here](https://github.com/TestStack/TestStack.FluentMVCTesting/issues/47).
20
+
21
+
22
+
### Fix
23
+
24
+
If your project has been impacted by this particular breaking change, you might consider reevaluate the correctness of the affected tests.
0 commit comments