Skip to content

Commit

Permalink
#218 release is done
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonBock committed Nov 20, 2022
1 parent cce2767 commit ec59c9f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/Quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
- [Optional Arguments](#optional-arguments)
- [Mocking Properties](#mocking-properties)
- [Mocking Indexers](#mocking-indexers)
- [Setting `required` and `init` Properties](#settin-required-and-init-properties)
- [Mocking Events](#mocking-events)
- [Using Makes](#using-makes)
- [Handling Asynchronous Code](#handling-asynchronous-code)
Expand Down Expand Up @@ -371,7 +372,7 @@ This will set `InitData` to `"a"` and `RequiredData` to `"b"` on the mock instan

`ConstructorProperties` will contain properties that are both virtual and non-virtual. If there are no `required` properties, the `constructorProperties` parameter will be nullable.

Note, indexers with an `init` cannot be set this way.
Note that this will work with `init` indexers as well. `required` indexers is currently not possible in C#.

### Mocking Events

Expand Down
7 changes: 7 additions & 0 deletions docs/notes/218 - Publish 7.0.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FluentAssertions.Common.ICollectionWrapper<object>


Takeaways


* Need to come up with a unique file/"hint" name. I noticed in the CodeGenerator test project that I'm getting an error, so...maybe something like "FlattenedAssemblyName_FlattenedTypeName_Rock_CreateOrMake.g.cs"

0 comments on commit ec59c9f

Please sign in to comment.