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
or package.json exists on `src/RandomFixtureKit.Unity/Assets/Scripts/RandomFixtureKit` for unity package manager.
18
+
17
19
How to use
18
20
---
19
21
@@ -57,7 +59,60 @@ var v = FixtureFactory.Create<IFoo>(); // return Foo object
57
59
58
60
edge-case, for example int is filled `int.MinValue`, `int.MaxValue`, `0`, `-1` or `1`. collection(array, list, etc...) is filled `null`, `zero-elements`, `one-elements`, `nine-elements`.
59
61
60
-
TODO: More sample of combine resolvers and create custom generator.
62
+
Custom Generator
63
+
---
64
+
Implement `IGenerator` and setup composite-resolver, you can control how generate values.
65
+
66
+
67
+
```csharp
68
+
// for example, increment Id on create MyClass value.
0 commit comments