Skip to content

Commit 1337df2

Browse files
committed
Remove FluentAssertions from prd
1 parent 0043425 commit 1337df2

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

prd.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public enum LogicalOp { And, Or }
136136
- `.SequenceEqual(other)` → produce diff (see 3.4).
137137
- **Calls, indexers, member access** that feed into the boolean → capture values as needed for a clear message.
138138
- **Strings vs strings:** produce inline (default) or side‑by‑side diff via DiffPlex.
139-
- **Collections vs collections:** produce readable mismatch reports (index of first diff, missing/extra) using FluentAssertions or an internal LCS; include previews.
139+
- **Collections vs collections:** produce readable mismatch reports (index of first diff, missing/extra) internal LCS; include previews.
140140
- **Objects/records/structs:** when equality fails, run a deep diff via Compare‑Net‑Objects (path‑level differences).
141141
- On failure, throw `SharpAssertionException` with a well‑formatted message (includes expression text, file, line).
142142

@@ -306,10 +306,7 @@ using (SharpConfig.WithOptions(new SharpOptions { StringsSideBySide = true }))
306306
```bash
307307
dotnet add package DiffPlex
308308
```
309-
- **FluentAssertions** (planned) — readable collection diffs & predicate messaging
310-
```bash
311-
dotnet add package FluentAssertions
312-
```
309+
-
313310
- **Compare‑Net‑Objects** (planned) — deep object diffs
314311
```bash
315312
dotnet add package KellermanSoftware.CompareNetObjects

0 commit comments

Comments
 (0)