forked from microsoft/coyote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs-local.yml
713 lines (713 loc) · 50.5 KB
/
mkdocs-local.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
site_name: Coyote
site_url: http://127.0.0.1:8000/
repo_url: https://github.com/microsoft/coyote/
theme:
name: null
custom_dir: docs/windmill_dark
static_templates:
- 404.html
include_search_page: true
search_index_only: true
history_buttons: true
article_nav_top: true
article_nav_bottom: true
highlightjs: true
features:
- search.highlight
markdown_extensions:
- smarty
extra_css:
- css/main.css
- css/player-controls.css
- css/syntax.css
extra_javascript:
- assets/js/analytics.js
- assets/js/plugins.js
- assets/js/animate_trace.js
- assets/js/animation.js
- assets/js/progress_bar.js
- assets/js/trace_model.js
- assets/js/main.js
plugins:
- search
- macros:
include_dir: docs/include
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/microsoft/coyote
generator: false
base_url: /
nav:
- Home: index.md
- Overview:
- Key benefits: overview/benefits.md
- How does it work: overview/how.md
- Videos: overview/videos.md
- Publications: overview/publications.md
- FAQ: overview/faq.md
- Get started with Coyote:
- Installing Coyote: get-started/install.md
- Using Coyote: get-started/using-coyote.md
- Building from source: get-started/build-source.md
- Telemetry: get-started/telemetry.md
- Tutorials:
- Overview: tutorials/overview.md
- Write your first concurrency unit test: tutorials/first-concurrency-unit-test.md
- Test concurrent CRUD operations: tutorials/test-concurrent-operations.md
- Writing mocks:
- Mocking dependencies for testing: tutorials/mocks/mock-dependencies.md
- Simulating optimistic concurrency control: tutorials/mocks/optimistic-concurrency-control.md
- Testing an ASP.NET Core service: tutorials/testing-aspnet-service.md
- Test failover and liveness: tutorials/test-failover.md
- Actors and state machines:
- Hello world with actors: tutorials/actors/hello-world.md
- Raft actor service (on Azure): tutorials/actors/raft-azure.md
- Raft actor service (mocked): tutorials/actors/raft-mocking.md
- Test failover and liveness: tutorials/actors/test-failover.md
- Concepts:
- Program non-determinism: concepts/non-determinism.md
- Concurrency unit testing: concepts/concurrency-unit-testing.md
- Binary rewriting for systematic testing: concepts/binary-rewriting.md
- Program specifications: concepts/specifications.md
- Actors and state machines:
- Overview: concepts/actors/overview.md
- State machines: concepts/actors/state-machines.md
- Actor semantics: concepts/actors/actor-semantics.md
- Actor termination: concepts/actors/termination.md
- Using timers in actors: concepts/actors/timers.md
- Event groups: concepts/actors/event-groups.md
- Semantics of unhandled exceptions: concepts/actors/uncaught-exceptions.md
- Sharing objects: concepts/actors/sharing-objects.md
- Logging: concepts/actors/logging.md
- State machine demo: concepts/actors/state-machine-demo.md
- Why Coyote actors?: concepts/actors/why-actors.md
- How-to guides:
- Integrate with a unit testing framework: how-to/unit-testing.md
- Find liveness bugs effectively: how-to/liveness-checking.md
- Track code and actor activity coverage: how-to/coverage.md
- Generate DGML diagrams: how-to/generate-dgml.md
- Samples:
- Overview: samples/overview.md
- Task-based C# programs:
- Deadlock in bounded-buffer: samples/tasks/bounded-buffer.md
- Actors and state machines:
- Bug in failure detector: samples/actors/failure-detector.md
- Robot navigator failover: samples/actors/failover-robot-navigator.md
- Case studies:
- Azure Batch Service: case-studies/azure-batch-service.md
- Azure Blockchain Service: case-studies/azure-blockchain-service.md
- Azure Blockchain Workbench: case-studies/azure-blockchain-workbench.md
- API documentation:
- Microsoft.Coyote:
- Overview: ref/Microsoft.Coyote.md
- Microsoft.Coyote:
- Namespace Overview: ref/Microsoft.CoyoteNamespace.md
- Configuration:
- Overview: ref/Microsoft.Coyote/Configuration.md
- Create: ref/Microsoft.Coyote/Configuration/Create.md
- WithVerbosityEnabled: ref/Microsoft.Coyote/Configuration/WithVerbosityEnabled.md
- WithConsoleLoggingEnabled: ref/Microsoft.Coyote/Configuration/WithConsoleLoggingEnabled.md
- WithTestingIterations: ref/Microsoft.Coyote/Configuration/WithTestingIterations.md
- WithTestingTimeout: ref/Microsoft.Coyote/Configuration/WithTestingTimeout.md
- WithReproducibleTrace: ref/Microsoft.Coyote/Configuration/WithReproducibleTrace.md
- WithRandomStrategy: ref/Microsoft.Coyote/Configuration/WithRandomStrategy.md
- WithProbabilisticStrategy: ref/Microsoft.Coyote/Configuration/WithProbabilisticStrategy.md
- WithPrioritizationStrategy: ref/Microsoft.Coyote/Configuration/WithPrioritizationStrategy.md
- WithQLearningStrategy: ref/Microsoft.Coyote/Configuration/WithQLearningStrategy.md
- WithPartiallyControlledConcurrencyAllowed: ref/Microsoft.Coyote/Configuration/WithPartiallyControlledConcurrencyAllowed.md
- WithSystematicFuzzingEnabled: ref/Microsoft.Coyote/Configuration/WithSystematicFuzzingEnabled.md
- WithSystematicFuzzingFallbackEnabled: ref/Microsoft.Coyote/Configuration/WithSystematicFuzzingFallbackEnabled.md
- WithMaxFuzzingDelay: ref/Microsoft.Coyote/Configuration/WithMaxFuzzingDelay.md
- WithLockAccessRaceCheckingEnabled: ref/Microsoft.Coyote/Configuration/WithLockAccessRaceCheckingEnabled.md
- WithSharedStateReductionEnabled: ref/Microsoft.Coyote/Configuration/WithSharedStateReductionEnabled.md
- WithNoBugTraceRepro: ref/Microsoft.Coyote/Configuration/WithNoBugTraceRepro.md
- WithMaxSchedulingSteps: ref/Microsoft.Coyote/Configuration/WithMaxSchedulingSteps.md
- WithLivenessTemperatureThreshold: ref/Microsoft.Coyote/Configuration/WithLivenessTemperatureThreshold.md
- WithTimeoutDelay: ref/Microsoft.Coyote/Configuration/WithTimeoutDelay.md
- WithDeadlockTimeout: ref/Microsoft.Coyote/Configuration/WithDeadlockTimeout.md
- WithPotentialDeadlocksReportedAsBugs: ref/Microsoft.Coyote/Configuration/WithPotentialDeadlocksReportedAsBugs.md
- WithUncontrolledConcurrencyResolutionTimeout: ref/Microsoft.Coyote/Configuration/WithUncontrolledConcurrencyResolutionTimeout.md
- WithRandomGeneratorSeed: ref/Microsoft.Coyote/Configuration/WithRandomGeneratorSeed.md
- WithActivityCoverageReported: ref/Microsoft.Coyote/Configuration/WithActivityCoverageReported.md
- WithTraceVisualizationEnabled: ref/Microsoft.Coyote/Configuration/WithTraceVisualizationEnabled.md
- WithXmlLogEnabled: ref/Microsoft.Coyote/Configuration/WithXmlLogEnabled.md
- WithTelemetryEnabled: ref/Microsoft.Coyote/Configuration/WithTelemetryEnabled.md
- Configuration: ref/Microsoft.Coyote/Configuration/Configuration.md
- TestingIterations: ref/Microsoft.Coyote/Configuration/TestingIterations.md
- RandomGeneratorSeed: ref/Microsoft.Coyote/Configuration/RandomGeneratorSeed.md
- MaxFuzzingDelay: ref/Microsoft.Coyote/Configuration/MaxFuzzingDelay.md
- MaxUnfairSchedulingSteps: ref/Microsoft.Coyote/Configuration/MaxUnfairSchedulingSteps.md
- MaxFairSchedulingSteps: ref/Microsoft.Coyote/Configuration/MaxFairSchedulingSteps.md
- TimeoutDelay: ref/Microsoft.Coyote/Configuration/TimeoutDelay.md
- DeadlockTimeout: ref/Microsoft.Coyote/Configuration/DeadlockTimeout.md
- VerbosityLevel: ref/Microsoft.Coyote/Configuration/VerbosityLevel.md
- Microsoft.Coyote.Coverage:
- Namespace Overview: ref/Microsoft.Coyote.CoverageNamespace.md
- CoverageGraph:
- Overview: ref/Microsoft.Coyote.Coverage/CoverageGraph.md
- GetNode: ref/Microsoft.Coyote.Coverage/CoverageGraph/GetNode.md
- GetOrCreateNode: ref/Microsoft.Coyote.Coverage/CoverageGraph/GetOrCreateNode.md
- GetOrCreateLink: ref/Microsoft.Coyote.Coverage/CoverageGraph/GetOrCreateLink.md
- WriteDgml: ref/Microsoft.Coyote.Coverage/CoverageGraph/WriteDgml.md
- LoadDgml: ref/Microsoft.Coyote.Coverage/CoverageGraph/LoadDgml.md
- Merge: ref/Microsoft.Coyote.Coverage/CoverageGraph/Merge.md
- ToString: ref/Microsoft.Coyote.Coverage/CoverageGraph/ToString.md
- CoverageGraph: ref/Microsoft.Coyote.Coverage/CoverageGraph/CoverageGraph.md
- Nodes: ref/Microsoft.Coyote.Coverage/CoverageGraph/Nodes.md
- Links: ref/Microsoft.Coyote.Coverage/CoverageGraph/Links.md
- CoverageInfo:
- Overview: ref/Microsoft.Coyote.Coverage/CoverageInfo.md
- IsMonitorDeclared: ref/Microsoft.Coyote.Coverage/CoverageInfo/IsMonitorDeclared.md
- DeclareMonitorState: ref/Microsoft.Coyote.Coverage/CoverageInfo/DeclareMonitorState.md
- DeclareMonitorStateEventPair: ref/Microsoft.Coyote.Coverage/CoverageInfo/DeclareMonitorStateEventPair.md
- Load: ref/Microsoft.Coyote.Coverage/CoverageInfo/Load.md
- Save: ref/Microsoft.Coyote.Coverage/CoverageInfo/Save.md
- Merge: ref/Microsoft.Coyote.Coverage/CoverageInfo/Merge.md
- CoverageInfo: ref/Microsoft.Coyote.Coverage/CoverageInfo/CoverageInfo.md
- CoverageGraph: ref/Microsoft.Coyote.Coverage/CoverageInfo/CoverageGraph.md
- Monitors: ref/Microsoft.Coyote.Coverage/CoverageInfo/Monitors.md
- MonitorsToStates: ref/Microsoft.Coyote.Coverage/CoverageInfo/MonitorsToStates.md
- RegisteredMonitorEvents: ref/Microsoft.Coyote.Coverage/CoverageInfo/RegisteredMonitorEvents.md
- MonitorEventInfo: ref/Microsoft.Coyote.Coverage/CoverageInfo/MonitorEventInfo.md
- MonitorEventCoverage:
- Overview: ref/Microsoft.Coyote.Coverage/MonitorEventCoverage.md
- GetEventsProcessed: ref/Microsoft.Coyote.Coverage/MonitorEventCoverage/GetEventsProcessed.md
- GetEventsRaised: ref/Microsoft.Coyote.Coverage/MonitorEventCoverage/GetEventsRaised.md
- MonitorEventCoverage: ref/Microsoft.Coyote.Coverage/MonitorEventCoverage/MonitorEventCoverage.md
- CoverageGraph.Object:
- Overview: ref/Microsoft.Coyote.Coverage/CoverageGraph.Object.md
- AddAttribute: ref/Microsoft.Coyote.Coverage/CoverageGraph.Object/AddAttribute.md
- AddListAttribute: ref/Microsoft.Coyote.Coverage/CoverageGraph.Object/AddListAttribute.md
- Object: ref/Microsoft.Coyote.Coverage/CoverageGraph.Object/Object.md
- Attributes: ref/Microsoft.Coyote.Coverage/CoverageGraph.Object/Attributes.md
- AttributeLists: ref/Microsoft.Coyote.Coverage/CoverageGraph.Object/AttributeLists.md
- CoverageGraph.Node:
- Overview: ref/Microsoft.Coyote.Coverage/CoverageGraph.Node.md
- AddDgmlProperties: ref/Microsoft.Coyote.Coverage/CoverageGraph.Node/AddDgmlProperties.md
- Node: ref/Microsoft.Coyote.Coverage/CoverageGraph.Node/Node.md
- Id: ref/Microsoft.Coyote.Coverage/CoverageGraph.Node/Id.md
- Label: ref/Microsoft.Coyote.Coverage/CoverageGraph.Node/Label.md
- Category: ref/Microsoft.Coyote.Coverage/CoverageGraph.Node/Category.md
- CoverageGraph.Link:
- Overview: ref/Microsoft.Coyote.Coverage/CoverageGraph.Link.md
- AddDgmlProperties: ref/Microsoft.Coyote.Coverage/CoverageGraph.Link/AddDgmlProperties.md
- Link: ref/Microsoft.Coyote.Coverage/CoverageGraph.Link/Link.md
- Label: ref/Microsoft.Coyote.Coverage/CoverageGraph.Link/Label.md
- Category: ref/Microsoft.Coyote.Coverage/CoverageGraph.Link/Category.md
- Source: ref/Microsoft.Coyote.Coverage/CoverageGraph.Link/Source.md
- Target: ref/Microsoft.Coyote.Coverage/CoverageGraph.Link/Target.md
- Index: ref/Microsoft.Coyote.Coverage/CoverageGraph.Link/Index.md
- Microsoft.Coyote.Logging:
- Namespace Overview: ref/Microsoft.Coyote.LoggingNamespace.md
- ILogger:
- Overview: ref/Microsoft.Coyote.Logging/ILogger.md
- Write: ref/Microsoft.Coyote.Logging/ILogger/Write.md
- WriteLine: ref/Microsoft.Coyote.Logging/ILogger/WriteLine.md
- LogSeverity: ref/Microsoft.Coyote.Logging/LogSeverity.md
- MemoryLogger:
- Overview: ref/Microsoft.Coyote.Logging/MemoryLogger.md
- Write: ref/Microsoft.Coyote.Logging/MemoryLogger/Write.md
- WriteLine: ref/Microsoft.Coyote.Logging/MemoryLogger/WriteLine.md
- ToString: ref/Microsoft.Coyote.Logging/MemoryLogger/ToString.md
- Dispose: ref/Microsoft.Coyote.Logging/MemoryLogger/Dispose.md
- MemoryLogger: ref/Microsoft.Coyote.Logging/MemoryLogger/MemoryLogger.md
- TextWriterLogger:
- Overview: ref/Microsoft.Coyote.Logging/TextWriterLogger.md
- Write: ref/Microsoft.Coyote.Logging/TextWriterLogger/Write.md
- WriteLine: ref/Microsoft.Coyote.Logging/TextWriterLogger/WriteLine.md
- Dispose: ref/Microsoft.Coyote.Logging/TextWriterLogger/Dispose.md
- TextWriterLogger: ref/Microsoft.Coyote.Logging/TextWriterLogger/TextWriterLogger.md
- VerbosityLevel: ref/Microsoft.Coyote.Logging/VerbosityLevel.md
- Microsoft.Coyote.Random:
- Namespace Overview: ref/Microsoft.Coyote.RandomNamespace.md
- Generator:
- Overview: ref/Microsoft.Coyote.Random/Generator.md
- Create: ref/Microsoft.Coyote.Random/Generator/Create.md
- NextBoolean: ref/Microsoft.Coyote.Random/Generator/NextBoolean.md
- NextInteger: ref/Microsoft.Coyote.Random/Generator/NextInteger.md
- Microsoft.Coyote.Runtime:
- Namespace Overview: ref/Microsoft.Coyote.RuntimeNamespace.md
- AssertionFailureException: ref/Microsoft.Coyote.Runtime/AssertionFailureException.md
- RuntimeException:
- Overview: ref/Microsoft.Coyote.Runtime/RuntimeException.md
- RuntimeException: ref/Microsoft.Coyote.Runtime/RuntimeException/RuntimeException.md
- IRuntimeExtension:
- Overview: ref/Microsoft.Coyote.Runtime/IRuntimeExtension.md
- RunTest: ref/Microsoft.Coyote.Runtime/IRuntimeExtension/RunTest.md
- BuildCoverageInfo: ref/Microsoft.Coyote.Runtime/IRuntimeExtension/BuildCoverageInfo.md
- GetCoverageInfo: ref/Microsoft.Coyote.Runtime/IRuntimeExtension/GetCoverageInfo.md
- GetCoverageGraph: ref/Microsoft.Coyote.Runtime/IRuntimeExtension/GetCoverageGraph.md
- WaitUntilQuiescenceAsync: ref/Microsoft.Coyote.Runtime/IRuntimeExtension/WaitUntilQuiescenceAsync.md
- ICoyoteRuntime:
- Overview: ref/Microsoft.Coyote.Runtime/ICoyoteRuntime.md
- RegisterMonitor: ref/Microsoft.Coyote.Runtime/ICoyoteRuntime/RegisterMonitor.md
- Monitor: ref/Microsoft.Coyote.Runtime/ICoyoteRuntime/Monitor.md
- RandomBoolean: ref/Microsoft.Coyote.Runtime/ICoyoteRuntime/RandomBoolean.md
- RandomInteger: ref/Microsoft.Coyote.Runtime/ICoyoteRuntime/RandomInteger.md
- Assert: ref/Microsoft.Coyote.Runtime/ICoyoteRuntime/Assert.md
- RegisterLog: ref/Microsoft.Coyote.Runtime/ICoyoteRuntime/RegisterLog.md
- RemoveLog: ref/Microsoft.Coyote.Runtime/ICoyoteRuntime/RemoveLog.md
- Stop: ref/Microsoft.Coyote.Runtime/ICoyoteRuntime/Stop.md
- Logger: ref/Microsoft.Coyote.Runtime/ICoyoteRuntime/Logger.md
- OnFailure: ref/Microsoft.Coyote.Runtime/ICoyoteRuntime/OnFailure.md
- IRuntimeLog:
- Overview: ref/Microsoft.Coyote.Runtime/IRuntimeLog.md
- OnCreateMonitor: ref/Microsoft.Coyote.Runtime/IRuntimeLog/OnCreateMonitor.md
- OnMonitorExecuteAction: ref/Microsoft.Coyote.Runtime/IRuntimeLog/OnMonitorExecuteAction.md
- OnMonitorProcessEvent: ref/Microsoft.Coyote.Runtime/IRuntimeLog/OnMonitorProcessEvent.md
- OnMonitorRaiseEvent: ref/Microsoft.Coyote.Runtime/IRuntimeLog/OnMonitorRaiseEvent.md
- OnMonitorStateTransition: ref/Microsoft.Coyote.Runtime/IRuntimeLog/OnMonitorStateTransition.md
- OnMonitorError: ref/Microsoft.Coyote.Runtime/IRuntimeLog/OnMonitorError.md
- OnRandom: ref/Microsoft.Coyote.Runtime/IRuntimeLog/OnRandom.md
- OnAssertionFailure: ref/Microsoft.Coyote.Runtime/IRuntimeLog/OnAssertionFailure.md
- OnCompleted: ref/Microsoft.Coyote.Runtime/IRuntimeLog/OnCompleted.md
- RuntimeLogTextFormatter:
- Overview: ref/Microsoft.Coyote.Runtime/RuntimeLogTextFormatter.md
- OnCreateMonitor: ref/Microsoft.Coyote.Runtime/RuntimeLogTextFormatter/OnCreateMonitor.md
- OnMonitorExecuteAction: ref/Microsoft.Coyote.Runtime/RuntimeLogTextFormatter/OnMonitorExecuteAction.md
- OnMonitorProcessEvent: ref/Microsoft.Coyote.Runtime/RuntimeLogTextFormatter/OnMonitorProcessEvent.md
- OnMonitorRaiseEvent: ref/Microsoft.Coyote.Runtime/RuntimeLogTextFormatter/OnMonitorRaiseEvent.md
- OnMonitorStateTransition: ref/Microsoft.Coyote.Runtime/RuntimeLogTextFormatter/OnMonitorStateTransition.md
- OnMonitorError: ref/Microsoft.Coyote.Runtime/RuntimeLogTextFormatter/OnMonitorError.md
- OnRandom: ref/Microsoft.Coyote.Runtime/RuntimeLogTextFormatter/OnRandom.md
- OnAssertionFailure: ref/Microsoft.Coyote.Runtime/RuntimeLogTextFormatter/OnAssertionFailure.md
- OnCompleted: ref/Microsoft.Coyote.Runtime/RuntimeLogTextFormatter/OnCompleted.md
- RuntimeLogTextFormatter: ref/Microsoft.Coyote.Runtime/RuntimeLogTextFormatter/RuntimeLogTextFormatter.md
- Logger: ref/Microsoft.Coyote.Runtime/RuntimeLogTextFormatter/Logger.md
- OnFailureHandler: ref/Microsoft.Coyote.Runtime/OnFailureHandler.md
- IOperationBuilder:
- Overview: ref/Microsoft.Coyote.Runtime/IOperationBuilder.md
- Name: ref/Microsoft.Coyote.Runtime/IOperationBuilder/Name.md
- GroupId: ref/Microsoft.Coyote.Runtime/IOperationBuilder/GroupId.md
- HashedStateCallback: ref/Microsoft.Coyote.Runtime/IOperationBuilder/HashedStateCallback.md
- Operation:
- Overview: ref/Microsoft.Coyote.Runtime/Operation.md
- GetNextId: ref/Microsoft.Coyote.Runtime/Operation/GetNextId.md
- CreateNext: ref/Microsoft.Coyote.Runtime/Operation/CreateNext.md
- CreateFrom: ref/Microsoft.Coyote.Runtime/Operation/CreateFrom.md
- Start: ref/Microsoft.Coyote.Runtime/Operation/Start.md
- PauseUntil: ref/Microsoft.Coyote.Runtime/Operation/PauseUntil.md
- PauseUntilCompleted: ref/Microsoft.Coyote.Runtime/Operation/PauseUntilCompleted.md
- PauseUntilAsync: ref/Microsoft.Coyote.Runtime/Operation/PauseUntilAsync.md
- PauseUntilCompletedAsync: ref/Microsoft.Coyote.Runtime/Operation/PauseUntilCompletedAsync.md
- ScheduleNext: ref/Microsoft.Coyote.Runtime/Operation/ScheduleNext.md
- Complete: ref/Microsoft.Coyote.Runtime/Operation/Complete.md
- TryReset: ref/Microsoft.Coyote.Runtime/Operation/TryReset.md
- RuntimeProvider:
- Overview: ref/Microsoft.Coyote.Runtime/RuntimeProvider.md
- Current: ref/Microsoft.Coyote.Runtime/RuntimeProvider/Current.md
- SchedulingPoint:
- Overview: ref/Microsoft.Coyote.Runtime/SchedulingPoint.md
- Interleave: ref/Microsoft.Coyote.Runtime/SchedulingPoint/Interleave.md
- Yield: ref/Microsoft.Coyote.Runtime/SchedulingPoint/Yield.md
- Read: ref/Microsoft.Coyote.Runtime/SchedulingPoint/Read.md
- Write: ref/Microsoft.Coyote.Runtime/SchedulingPoint/Write.md
- Suppress: ref/Microsoft.Coyote.Runtime/SchedulingPoint/Suppress.md
- Resume: ref/Microsoft.Coyote.Runtime/SchedulingPoint/Resume.md
- SetCheckpoint: ref/Microsoft.Coyote.Runtime/SchedulingPoint/SetCheckpoint.md
- TaskServices: ref/Microsoft.Coyote.Runtime/TaskServices.md
- Microsoft.Coyote.Specifications:
- Namespace Overview: ref/Microsoft.Coyote.SpecificationsNamespace.md
- Monitor:
- Overview: ref/Microsoft.Coyote.Specifications/Monitor.md
- RaiseEvent: ref/Microsoft.Coyote.Specifications/Monitor/RaiseEvent.md
- RaiseGotoStateEvent: ref/Microsoft.Coyote.Specifications/Monitor/RaiseGotoStateEvent.md
- Assert: ref/Microsoft.Coyote.Specifications/Monitor/Assert.md
- ToString: ref/Microsoft.Coyote.Specifications/Monitor/ToString.md
- Monitor: ref/Microsoft.Coyote.Specifications/Monitor/Monitor.md
- Logger: ref/Microsoft.Coyote.Specifications/Monitor/Logger.md
- CurrentState: ref/Microsoft.Coyote.Specifications/Monitor/CurrentState.md
- HashedState: ref/Microsoft.Coyote.Specifications/Monitor/HashedState.md
- Specification:
- Overview: ref/Microsoft.Coyote.Specifications/Specification.md
- Assert: ref/Microsoft.Coyote.Specifications/Specification/Assert.md
- IsEventuallyCompletedSuccessfully: ref/Microsoft.Coyote.Specifications/Specification/IsEventuallyCompletedSuccessfully.md
- RegisterMonitor: ref/Microsoft.Coyote.Specifications/Specification/RegisterMonitor.md
- Monitor: ref/Microsoft.Coyote.Specifications/Specification/Monitor.md
- Monitor.State:
- Overview: ref/Microsoft.Coyote.Specifications/Monitor.State.md
- State: ref/Microsoft.Coyote.Specifications/Monitor.State/State.md
- Monitor.StateGroup:
- Overview: ref/Microsoft.Coyote.Specifications/Monitor.StateGroup.md
- StateGroup: ref/Microsoft.Coyote.Specifications/Monitor.StateGroup/StateGroup.md
- Monitor.Event:
- Overview: ref/Microsoft.Coyote.Specifications/Monitor.Event.md
- Event: ref/Microsoft.Coyote.Specifications/Monitor.Event/Event.md
- Monitor.WildCardEvent:
- Overview: ref/Microsoft.Coyote.Specifications/Monitor.WildCardEvent.md
- WildCardEvent: ref/Microsoft.Coyote.Specifications/Monitor.WildCardEvent/WildCardEvent.md
- Monitor.State.StartAttribute:
- Overview: ref/Microsoft.Coyote.Specifications/Monitor.State.StartAttribute.md
- StartAttribute: ref/Microsoft.Coyote.Specifications/Monitor.State.StartAttribute/StartAttribute.md
- Monitor.State.OnEntryAttribute:
- Overview: ref/Microsoft.Coyote.Specifications/Monitor.State.OnEntryAttribute.md
- OnEntryAttribute: ref/Microsoft.Coyote.Specifications/Monitor.State.OnEntryAttribute/OnEntryAttribute.md
- Monitor.State.OnExitAttribute:
- Overview: ref/Microsoft.Coyote.Specifications/Monitor.State.OnExitAttribute.md
- OnExitAttribute: ref/Microsoft.Coyote.Specifications/Monitor.State.OnExitAttribute/OnExitAttribute.md
- Monitor.State.OnEventGotoStateAttribute:
- Overview: ref/Microsoft.Coyote.Specifications/Monitor.State.OnEventGotoStateAttribute.md
- OnEventGotoStateAttribute: ref/Microsoft.Coyote.Specifications/Monitor.State.OnEventGotoStateAttribute/OnEventGotoStateAttribute.md
- Monitor.State.OnEventDoActionAttribute:
- Overview: ref/Microsoft.Coyote.Specifications/Monitor.State.OnEventDoActionAttribute.md
- OnEventDoActionAttribute: ref/Microsoft.Coyote.Specifications/Monitor.State.OnEventDoActionAttribute/OnEventDoActionAttribute.md
- Monitor.State.IgnoreEventsAttribute:
- Overview: ref/Microsoft.Coyote.Specifications/Monitor.State.IgnoreEventsAttribute.md
- IgnoreEventsAttribute: ref/Microsoft.Coyote.Specifications/Monitor.State.IgnoreEventsAttribute/IgnoreEventsAttribute.md
- Monitor.State.ColdAttribute:
- Overview: ref/Microsoft.Coyote.Specifications/Monitor.State.ColdAttribute.md
- ColdAttribute: ref/Microsoft.Coyote.Specifications/Monitor.State.ColdAttribute/ColdAttribute.md
- Monitor.State.HotAttribute:
- Overview: ref/Microsoft.Coyote.Specifications/Monitor.State.HotAttribute.md
- HotAttribute: ref/Microsoft.Coyote.Specifications/Monitor.State.HotAttribute/HotAttribute.md
- Microsoft.Coyote.Testing:
- Namespace Overview: ref/Microsoft.Coyote.TestingNamespace.md
- ExplorationStrategy: ref/Microsoft.Coyote.Testing/ExplorationStrategy.md
- PortfolioMode: ref/Microsoft.Coyote.Testing/PortfolioMode.md
- Microsoft.Coyote.Actors:
- Overview: ref/Microsoft.Coyote.Actors.md
- Microsoft.Coyote.Actors:
- Namespace Overview: ref/Microsoft.Coyote.ActorsNamespace.md
- DequeueStatus: ref/Microsoft.Coyote.Actors/DequeueStatus.md
- AwaitableEventGroup<T>:
- Overview: ref/Microsoft.Coyote.Actors/AwaitableEventGroup-1.md
- SetResult: ref/Microsoft.Coyote.Actors/AwaitableEventGroup-1/SetResult.md
- TrySetResult: ref/Microsoft.Coyote.Actors/AwaitableEventGroup-1/TrySetResult.md
- SetCancelled: ref/Microsoft.Coyote.Actors/AwaitableEventGroup-1/SetCancelled.md
- TrySetCanceled: ref/Microsoft.Coyote.Actors/AwaitableEventGroup-1/TrySetCanceled.md
- SetException: ref/Microsoft.Coyote.Actors/AwaitableEventGroup-1/SetException.md
- TrySetException: ref/Microsoft.Coyote.Actors/AwaitableEventGroup-1/TrySetException.md
- GetAwaiter: ref/Microsoft.Coyote.Actors/AwaitableEventGroup-1/GetAwaiter.md
- AwaitableEventGroup: ref/Microsoft.Coyote.Actors/AwaitableEventGroup-1/AwaitableEventGroup.md
- Task: ref/Microsoft.Coyote.Actors/AwaitableEventGroup-1/Task.md
- IsCompleted: ref/Microsoft.Coyote.Actors/AwaitableEventGroup-1/IsCompleted.md
- IsCanceled: ref/Microsoft.Coyote.Actors/AwaitableEventGroup-1/IsCanceled.md
- IsFaulted: ref/Microsoft.Coyote.Actors/AwaitableEventGroup-1/IsFaulted.md
- DefaultEvent:
- Overview: ref/Microsoft.Coyote.Actors/DefaultEvent.md
- Instance: ref/Microsoft.Coyote.Actors/DefaultEvent/Instance.md
- Event:
- Overview: ref/Microsoft.Coyote.Actors/Event.md
- Event: ref/Microsoft.Coyote.Actors/Event/Event.md
- EventGroup:
- Overview: ref/Microsoft.Coyote.Actors/EventGroup.md
- EventGroup: ref/Microsoft.Coyote.Actors/EventGroup/EventGroup.md
- Id: ref/Microsoft.Coyote.Actors/EventGroup/Id.md
- Name: ref/Microsoft.Coyote.Actors/EventGroup/Name.md
- '': ref/Microsoft.Coyote.Actors/EventGroup/Null.md
- HaltEvent:
- Overview: ref/Microsoft.Coyote.Actors/HaltEvent.md
- Instance: ref/Microsoft.Coyote.Actors/HaltEvent/Instance.md
- WildCardEvent:
- Overview: ref/Microsoft.Coyote.Actors/WildCardEvent.md
- WildCardEvent: ref/Microsoft.Coyote.Actors/WildCardEvent/WildCardEvent.md
- OnExceptionOutcome: ref/Microsoft.Coyote.Actors/OnExceptionOutcome.md
- UnhandledEventException:
- Overview: ref/Microsoft.Coyote.Actors/UnhandledEventException.md
- UnhandledEvent: ref/Microsoft.Coyote.Actors/UnhandledEventException/UnhandledEvent.md
- CurrentStateName: ref/Microsoft.Coyote.Actors/UnhandledEventException/CurrentStateName.md
- OnActorHaltedHandler: ref/Microsoft.Coyote.Actors/OnActorHaltedHandler.md
- OnEventDroppedHandler: ref/Microsoft.Coyote.Actors/OnEventDroppedHandler.md
- ActorRuntimeLogTextFormatter:
- Overview: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter.md
- OnCreateActor: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnCreateActor.md
- OnCreateStateMachine: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnCreateStateMachine.md
- OnCreateTimer: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnCreateTimer.md
- OnDefaultEventHandler: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnDefaultEventHandler.md
- OnEventHandlerTerminated: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnEventHandlerTerminated.md
- OnDequeueEvent: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnDequeueEvent.md
- OnEnqueueEvent: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnEnqueueEvent.md
- OnExceptionHandled: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnExceptionHandled.md
- OnExceptionThrown: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnExceptionThrown.md
- OnExecuteAction: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnExecuteAction.md
- OnGotoState: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnGotoState.md
- OnHalt: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnHalt.md
- OnPopState: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnPopState.md
- OnPopStateUnhandledEvent: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnPopStateUnhandledEvent.md
- OnPushState: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnPushState.md
- OnRaiseEvent: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnRaiseEvent.md
- OnHandleRaisedEvent: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnHandleRaisedEvent.md
- OnReceiveEvent: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnReceiveEvent.md
- OnSendEvent: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnSendEvent.md
- OnStateTransition: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnStateTransition.md
- OnStopTimer: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnStopTimer.md
- OnWaitEvent: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/OnWaitEvent.md
- ActorRuntimeLogTextFormatter: ref/Microsoft.Coyote.Actors/ActorRuntimeLogTextFormatter/ActorRuntimeLogTextFormatter.md
- IActorRuntimeLog:
- Overview: ref/Microsoft.Coyote.Actors/IActorRuntimeLog.md
- OnCreateActor: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnCreateActor.md
- OnCreateStateMachine: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnCreateStateMachine.md
- OnExecuteAction: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnExecuteAction.md
- OnSendEvent: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnSendEvent.md
- OnRaiseEvent: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnRaiseEvent.md
- OnHandleRaisedEvent: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnHandleRaisedEvent.md
- OnEnqueueEvent: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnEnqueueEvent.md
- OnDequeueEvent: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnDequeueEvent.md
- OnReceiveEvent: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnReceiveEvent.md
- OnWaitEvent: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnWaitEvent.md
- OnStateTransition: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnStateTransition.md
- OnGotoState: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnGotoState.md
- OnPushState: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnPushState.md
- OnPopState: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnPopState.md
- OnDefaultEventHandler: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnDefaultEventHandler.md
- OnEventHandlerTerminated: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnEventHandlerTerminated.md
- OnHalt: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnHalt.md
- OnPopStateUnhandledEvent: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnPopStateUnhandledEvent.md
- OnExceptionThrown: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnExceptionThrown.md
- OnExceptionHandled: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnExceptionHandled.md
- OnCreateTimer: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnCreateTimer.md
- OnStopTimer: ref/Microsoft.Coyote.Actors/IActorRuntimeLog/OnStopTimer.md
- Actor:
- Overview: ref/Microsoft.Coyote.Actors/Actor.md
- CreateActor: ref/Microsoft.Coyote.Actors/Actor/CreateActor.md
- SendEvent: ref/Microsoft.Coyote.Actors/Actor/SendEvent.md
- ReceiveEventAsync: ref/Microsoft.Coyote.Actors/Actor/ReceiveEventAsync.md
- StartTimer: ref/Microsoft.Coyote.Actors/Actor/StartTimer.md
- StartPeriodicTimer: ref/Microsoft.Coyote.Actors/Actor/StartPeriodicTimer.md
- StopTimer: ref/Microsoft.Coyote.Actors/Actor/StopTimer.md
- RandomBoolean: ref/Microsoft.Coyote.Actors/Actor/RandomBoolean.md
- RandomInteger: ref/Microsoft.Coyote.Actors/Actor/RandomInteger.md
- Monitor: ref/Microsoft.Coyote.Actors/Actor/Monitor.md
- Assert: ref/Microsoft.Coyote.Actors/Actor/Assert.md
- RaiseHaltEvent: ref/Microsoft.Coyote.Actors/Actor/RaiseHaltEvent.md
- OnInitializeAsync: ref/Microsoft.Coyote.Actors/Actor/OnInitializeAsync.md
- OnEventDequeuedAsync: ref/Microsoft.Coyote.Actors/Actor/OnEventDequeuedAsync.md
- OnEventIgnored: ref/Microsoft.Coyote.Actors/Actor/OnEventIgnored.md
- OnEventDeferred: ref/Microsoft.Coyote.Actors/Actor/OnEventDeferred.md
- OnEventHandledAsync: ref/Microsoft.Coyote.Actors/Actor/OnEventHandledAsync.md
- OnEventUnhandledAsync: ref/Microsoft.Coyote.Actors/Actor/OnEventUnhandledAsync.md
- OnExceptionHandledAsync: ref/Microsoft.Coyote.Actors/Actor/OnExceptionHandledAsync.md
- OnHaltAsync: ref/Microsoft.Coyote.Actors/Actor/OnHaltAsync.md
- OnException: ref/Microsoft.Coyote.Actors/Actor/OnException.md
- Equals: ref/Microsoft.Coyote.Actors/Actor/Equals.md
- GetHashCode: ref/Microsoft.Coyote.Actors/Actor/GetHashCode.md
- ToString: ref/Microsoft.Coyote.Actors/Actor/ToString.md
- Actor: ref/Microsoft.Coyote.Actors/Actor/Actor.md
- Id: ref/Microsoft.Coyote.Actors/Actor/Id.md
- CurrentEventGroup: ref/Microsoft.Coyote.Actors/Actor/CurrentEventGroup.md
- Logger: ref/Microsoft.Coyote.Actors/Actor/Logger.md
- HashedState: ref/Microsoft.Coyote.Actors/Actor/HashedState.md
- ActorExecutionStatus: ref/Microsoft.Coyote.Actors/ActorExecutionStatus.md
- ActorId:
- Overview: ref/Microsoft.Coyote.Actors/ActorId.md
- Equals: ref/Microsoft.Coyote.Actors/ActorId/Equals.md
- GetHashCode: ref/Microsoft.Coyote.Actors/ActorId/GetHashCode.md
- ToString: ref/Microsoft.Coyote.Actors/ActorId/ToString.md
- CompareTo: ref/Microsoft.Coyote.Actors/ActorId/CompareTo.md
- Runtime: ref/Microsoft.Coyote.Actors/ActorId/Runtime.md
- IsNameUsedForHashing: ref/Microsoft.Coyote.Actors/ActorId/IsNameUsedForHashing.md
- Value: ref/Microsoft.Coyote.Actors/ActorId/Value.md
- NameValue: ref/Microsoft.Coyote.Actors/ActorId/NameValue.md
- Type: ref/Microsoft.Coyote.Actors/ActorId/Type.md
- Name: ref/Microsoft.Coyote.Actors/ActorId/Name.md
- IActorRuntime:
- Overview: ref/Microsoft.Coyote.Actors/IActorRuntime.md
- CreateActorId: ref/Microsoft.Coyote.Actors/IActorRuntime/CreateActorId.md
- CreateActorIdFromName: ref/Microsoft.Coyote.Actors/IActorRuntime/CreateActorIdFromName.md
- CreateActor: ref/Microsoft.Coyote.Actors/IActorRuntime/CreateActor.md
- SendEvent: ref/Microsoft.Coyote.Actors/IActorRuntime/SendEvent.md
- GetCurrentEventGroup: ref/Microsoft.Coyote.Actors/IActorRuntime/GetCurrentEventGroup.md
- GetActorExecutionStatus: ref/Microsoft.Coyote.Actors/IActorRuntime/GetActorExecutionStatus.md
- GetCurrentActorIds: ref/Microsoft.Coyote.Actors/IActorRuntime/GetCurrentActorIds.md
- GetCurrentActorTypes: ref/Microsoft.Coyote.Actors/IActorRuntime/GetCurrentActorTypes.md
- GetCurrentActorCount: ref/Microsoft.Coyote.Actors/IActorRuntime/GetCurrentActorCount.md
- OnActorHalted: ref/Microsoft.Coyote.Actors/IActorRuntime/OnActorHalted.md
- OnEventDropped: ref/Microsoft.Coyote.Actors/IActorRuntime/OnEventDropped.md
- RuntimeFactory:
- Overview: ref/Microsoft.Coyote.Actors/RuntimeFactory.md
- Create: ref/Microsoft.Coyote.Actors/RuntimeFactory/Create.md
- SendOptions:
- Overview: ref/Microsoft.Coyote.Actors/SendOptions.md
- ToString: ref/Microsoft.Coyote.Actors/SendOptions/ToString.md
- SendOptions: ref/Microsoft.Coyote.Actors/SendOptions/SendOptions.md
- Default: ref/Microsoft.Coyote.Actors/SendOptions/Default.md
- MustHandle: ref/Microsoft.Coyote.Actors/SendOptions/MustHandle.md
- Assert: ref/Microsoft.Coyote.Actors/SendOptions/Assert.md
- HashedState: ref/Microsoft.Coyote.Actors/SendOptions/HashedState.md
- StateMachine:
- Overview: ref/Microsoft.Coyote.Actors/StateMachine.md
- RaiseEvent: ref/Microsoft.Coyote.Actors/StateMachine/RaiseEvent.md
- RaiseGotoStateEvent: ref/Microsoft.Coyote.Actors/StateMachine/RaiseGotoStateEvent.md
- RaisePushStateEvent: ref/Microsoft.Coyote.Actors/StateMachine/RaisePushStateEvent.md
- RaisePopStateEvent: ref/Microsoft.Coyote.Actors/StateMachine/RaisePopStateEvent.md
- RaiseHaltEvent: ref/Microsoft.Coyote.Actors/StateMachine/RaiseHaltEvent.md
- OnEventHandledAsync: ref/Microsoft.Coyote.Actors/StateMachine/OnEventHandledAsync.md
- StateMachine: ref/Microsoft.Coyote.Actors/StateMachine/StateMachine.md
- CurrentState: ref/Microsoft.Coyote.Actors/StateMachine/CurrentState.md
- Actor.OnEventDoActionAttribute:
- Overview: ref/Microsoft.Coyote.Actors/Actor.OnEventDoActionAttribute.md
- OnEventDoActionAttribute: ref/Microsoft.Coyote.Actors/Actor.OnEventDoActionAttribute/OnEventDoActionAttribute.md
- StateMachine.State:
- Overview: ref/Microsoft.Coyote.Actors/StateMachine.State.md
- State: ref/Microsoft.Coyote.Actors/StateMachine.State/State.md
- StateMachine.StateGroup:
- Overview: ref/Microsoft.Coyote.Actors/StateMachine.StateGroup.md
- StateGroup: ref/Microsoft.Coyote.Actors/StateMachine.StateGroup/StateGroup.md
- StateMachine.State.StartAttribute:
- Overview: ref/Microsoft.Coyote.Actors/StateMachine.State.StartAttribute.md
- StartAttribute: ref/Microsoft.Coyote.Actors/StateMachine.State.StartAttribute/StartAttribute.md
- StateMachine.State.OnEntryAttribute:
- Overview: ref/Microsoft.Coyote.Actors/StateMachine.State.OnEntryAttribute.md
- OnEntryAttribute: ref/Microsoft.Coyote.Actors/StateMachine.State.OnEntryAttribute/OnEntryAttribute.md
- StateMachine.State.OnExitAttribute:
- Overview: ref/Microsoft.Coyote.Actors/StateMachine.State.OnExitAttribute.md
- OnExitAttribute: ref/Microsoft.Coyote.Actors/StateMachine.State.OnExitAttribute/OnExitAttribute.md
- StateMachine.State.OnEventGotoStateAttribute:
- Overview: ref/Microsoft.Coyote.Actors/StateMachine.State.OnEventGotoStateAttribute.md
- OnEventGotoStateAttribute: ref/Microsoft.Coyote.Actors/StateMachine.State.OnEventGotoStateAttribute/OnEventGotoStateAttribute.md
- StateMachine.State.OnEventPushStateAttribute:
- Overview: ref/Microsoft.Coyote.Actors/StateMachine.State.OnEventPushStateAttribute.md
- OnEventPushStateAttribute: ref/Microsoft.Coyote.Actors/StateMachine.State.OnEventPushStateAttribute/OnEventPushStateAttribute.md
- StateMachine.State.OnEventDoActionAttribute:
- Overview: ref/Microsoft.Coyote.Actors/StateMachine.State.OnEventDoActionAttribute.md
- OnEventDoActionAttribute: ref/Microsoft.Coyote.Actors/StateMachine.State.OnEventDoActionAttribute/OnEventDoActionAttribute.md
- StateMachine.State.DeferEventsAttribute:
- Overview: ref/Microsoft.Coyote.Actors/StateMachine.State.DeferEventsAttribute.md
- DeferEventsAttribute: ref/Microsoft.Coyote.Actors/StateMachine.State.DeferEventsAttribute/DeferEventsAttribute.md
- StateMachine.State.IgnoreEventsAttribute:
- Overview: ref/Microsoft.Coyote.Actors/StateMachine.State.IgnoreEventsAttribute.md
- IgnoreEventsAttribute: ref/Microsoft.Coyote.Actors/StateMachine.State.IgnoreEventsAttribute/IgnoreEventsAttribute.md
- Microsoft.Coyote.Actors.Coverage:
- Namespace Overview: ref/Microsoft.Coyote.Actors.CoverageNamespace.md
- ActorCoverageInfo:
- Overview: ref/Microsoft.Coyote.Actors.Coverage/ActorCoverageInfo.md
- IsMachineDeclared: ref/Microsoft.Coyote.Actors.Coverage/ActorCoverageInfo/IsMachineDeclared.md
- DeclareMachineState: ref/Microsoft.Coyote.Actors.Coverage/ActorCoverageInfo/DeclareMachineState.md
- DeclareMachineStateEventPair: ref/Microsoft.Coyote.Actors.Coverage/ActorCoverageInfo/DeclareMachineStateEventPair.md
- Merge: ref/Microsoft.Coyote.Actors.Coverage/ActorCoverageInfo/Merge.md
- ActorCoverageInfo: ref/Microsoft.Coyote.Actors.Coverage/ActorCoverageInfo/ActorCoverageInfo.md
- Machines: ref/Microsoft.Coyote.Actors.Coverage/ActorCoverageInfo/Machines.md
- MachinesToStates: ref/Microsoft.Coyote.Actors.Coverage/ActorCoverageInfo/MachinesToStates.md
- RegisteredActorEvents: ref/Microsoft.Coyote.Actors.Coverage/ActorCoverageInfo/RegisteredActorEvents.md
- ActorEventInfo: ref/Microsoft.Coyote.Actors.Coverage/ActorCoverageInfo/ActorEventInfo.md
- ActorEventCoverage:
- Overview: ref/Microsoft.Coyote.Actors.Coverage/ActorEventCoverage.md
- GetEventsReceived: ref/Microsoft.Coyote.Actors.Coverage/ActorEventCoverage/GetEventsReceived.md
- GetEventsSent: ref/Microsoft.Coyote.Actors.Coverage/ActorEventCoverage/GetEventsSent.md
- ActorEventCoverage: ref/Microsoft.Coyote.Actors.Coverage/ActorEventCoverage/ActorEventCoverage.md
- Microsoft.Coyote.Actors.SharedObjects:
- Namespace Overview: ref/Microsoft.Coyote.Actors.SharedObjectsNamespace.md
- SharedCounter:
- Overview: ref/Microsoft.Coyote.Actors.SharedObjects/SharedCounter.md
- Create: ref/Microsoft.Coyote.Actors.SharedObjects/SharedCounter/Create.md
- Increment: ref/Microsoft.Coyote.Actors.SharedObjects/SharedCounter/Increment.md
- Decrement: ref/Microsoft.Coyote.Actors.SharedObjects/SharedCounter/Decrement.md
- GetValue: ref/Microsoft.Coyote.Actors.SharedObjects/SharedCounter/GetValue.md
- Add: ref/Microsoft.Coyote.Actors.SharedObjects/SharedCounter/Add.md
- Exchange: ref/Microsoft.Coyote.Actors.SharedObjects/SharedCounter/Exchange.md
- CompareExchange: ref/Microsoft.Coyote.Actors.SharedObjects/SharedCounter/CompareExchange.md
- SharedDictionary:
- Overview: ref/Microsoft.Coyote.Actors.SharedObjects/SharedDictionary.md
- Create: ref/Microsoft.Coyote.Actors.SharedObjects/SharedDictionary/Create.md
- SharedDictionary<TKey,TValue>:
- Overview: ref/Microsoft.Coyote.Actors.SharedObjects/SharedDictionary-2.md
- TryAdd: ref/Microsoft.Coyote.Actors.SharedObjects/SharedDictionary-2/TryAdd.md
- TryUpdate: ref/Microsoft.Coyote.Actors.SharedObjects/SharedDictionary-2/TryUpdate.md
- TryGetValue: ref/Microsoft.Coyote.Actors.SharedObjects/SharedDictionary-2/TryGetValue.md
- TryRemove: ref/Microsoft.Coyote.Actors.SharedObjects/SharedDictionary-2/TryRemove.md
- Item: ref/Microsoft.Coyote.Actors.SharedObjects/SharedDictionary-2/Item.md
- Count: ref/Microsoft.Coyote.Actors.SharedObjects/SharedDictionary-2/Count.md
- SharedRegister:
- Overview: ref/Microsoft.Coyote.Actors.SharedObjects/SharedRegister.md
- Create: ref/Microsoft.Coyote.Actors.SharedObjects/SharedRegister/Create.md
- SharedRegister<T>:
- Overview: ref/Microsoft.Coyote.Actors.SharedObjects/SharedRegister-1.md
- Update: ref/Microsoft.Coyote.Actors.SharedObjects/SharedRegister-1/Update.md
- GetValue: ref/Microsoft.Coyote.Actors.SharedObjects/SharedRegister-1/GetValue.md
- SetValue: ref/Microsoft.Coyote.Actors.SharedObjects/SharedRegister-1/SetValue.md
- Microsoft.Coyote.Actors.Timers:
- Namespace Overview: ref/Microsoft.Coyote.Actors.TimersNamespace.md
- TimerElapsedEvent:
- Overview: ref/Microsoft.Coyote.Actors.Timers/TimerElapsedEvent.md
- TimerElapsedEvent: ref/Microsoft.Coyote.Actors.Timers/TimerElapsedEvent/TimerElapsedEvent.md
- Info: ref/Microsoft.Coyote.Actors.Timers/TimerElapsedEvent/Info.md
- TimerInfo:
- Overview: ref/Microsoft.Coyote.Actors.Timers/TimerInfo.md
- Equals: ref/Microsoft.Coyote.Actors.Timers/TimerInfo/Equals.md
- GetHashCode: ref/Microsoft.Coyote.Actors.Timers/TimerInfo/GetHashCode.md
- ToString: ref/Microsoft.Coyote.Actors.Timers/TimerInfo/ToString.md
- OwnerId: ref/Microsoft.Coyote.Actors.Timers/TimerInfo/OwnerId.md
- DueTime: ref/Microsoft.Coyote.Actors.Timers/TimerInfo/DueTime.md
- Period: ref/Microsoft.Coyote.Actors.Timers/TimerInfo/Period.md
- CustomEvent: ref/Microsoft.Coyote.Actors.Timers/TimerInfo/CustomEvent.md
- Microsoft.Coyote.Test:
- Overview: ref/Microsoft.Coyote.Test.md
- Microsoft.Coyote.Rewriting:
- Namespace Overview: ref/Microsoft.Coyote.RewritingNamespace.md
- RewritingSignatureAttribute:
- Overview: ref/Microsoft.Coyote.Rewriting/RewritingSignatureAttribute.md
- RewritingSignatureAttribute: ref/Microsoft.Coyote.Rewriting/RewritingSignatureAttribute/RewritingSignatureAttribute.md
- Version: ref/Microsoft.Coyote.Rewriting/RewritingSignatureAttribute/Version.md
- Signature: ref/Microsoft.Coyote.Rewriting/RewritingSignatureAttribute/Signature.md
- RewritingEngine:
- Overview: ref/Microsoft.Coyote.Rewriting/RewritingEngine.md
- IsAssemblyRewritten: ref/Microsoft.Coyote.Rewriting/RewritingEngine/IsAssemblyRewritten.md
- Microsoft.Coyote.SystematicTesting:
- Namespace Overview: ref/Microsoft.Coyote.SystematicTestingNamespace.md
- TestReport:
- Overview: ref/Microsoft.Coyote.SystematicTesting/TestReport.md
- Merge: ref/Microsoft.Coyote.SystematicTesting/TestReport/Merge.md
- GetText: ref/Microsoft.Coyote.SystematicTesting/TestReport/GetText.md
- Clone: ref/Microsoft.Coyote.SystematicTesting/TestReport/Clone.md
- TestReport: ref/Microsoft.Coyote.SystematicTesting/TestReport/TestReport.md
- Configuration: ref/Microsoft.Coyote.SystematicTesting/TestReport/Configuration.md
- CoverageInfo: ref/Microsoft.Coyote.SystematicTesting/TestReport/CoverageInfo.md
- NumOfExploredFairSchedules: ref/Microsoft.Coyote.SystematicTesting/TestReport/NumOfExploredFairSchedules.md
- NumOfExploredUnfairSchedules: ref/Microsoft.Coyote.SystematicTesting/TestReport/NumOfExploredUnfairSchedules.md
- NumOfFoundBugs: ref/Microsoft.Coyote.SystematicTesting/TestReport/NumOfFoundBugs.md
- BugReports: ref/Microsoft.Coyote.SystematicTesting/TestReport/BugReports.md
- UncontrolledInvocations: ref/Microsoft.Coyote.SystematicTesting/TestReport/UncontrolledInvocations.md
- MinControlledOperations: ref/Microsoft.Coyote.SystematicTesting/TestReport/MinControlledOperations.md
- MaxControlledOperations: ref/Microsoft.Coyote.SystematicTesting/TestReport/MaxControlledOperations.md
- TotalControlledOperations: ref/Microsoft.Coyote.SystematicTesting/TestReport/TotalControlledOperations.md
- MinConcurrencyDegree: ref/Microsoft.Coyote.SystematicTesting/TestReport/MinConcurrencyDegree.md
- MaxConcurrencyDegree: ref/Microsoft.Coyote.SystematicTesting/TestReport/MaxConcurrencyDegree.md
- TotalConcurrencyDegree: ref/Microsoft.Coyote.SystematicTesting/TestReport/TotalConcurrencyDegree.md
- MinExploredFairSteps: ref/Microsoft.Coyote.SystematicTesting/TestReport/MinExploredFairSteps.md
- MaxExploredFairSteps: ref/Microsoft.Coyote.SystematicTesting/TestReport/MaxExploredFairSteps.md
- TotalExploredFairSteps: ref/Microsoft.Coyote.SystematicTesting/TestReport/TotalExploredFairSteps.md
- MinExploredUnfairSteps: ref/Microsoft.Coyote.SystematicTesting/TestReport/MinExploredUnfairSteps.md
- MaxExploredUnfairSteps: ref/Microsoft.Coyote.SystematicTesting/TestReport/MaxExploredUnfairSteps.md
- TotalExploredUnfairSteps: ref/Microsoft.Coyote.SystematicTesting/TestReport/TotalExploredUnfairSteps.md
- MaxFairStepsHitInFairTests: ref/Microsoft.Coyote.SystematicTesting/TestReport/MaxFairStepsHitInFairTests.md
- MaxUnfairStepsHitInFairTests: ref/Microsoft.Coyote.SystematicTesting/TestReport/MaxUnfairStepsHitInFairTests.md
- MaxUnfairStepsHitInUnfairTests: ref/Microsoft.Coyote.SystematicTesting/TestReport/MaxUnfairStepsHitInUnfairTests.md
- InternalErrors: ref/Microsoft.Coyote.SystematicTesting/TestReport/InternalErrors.md
- TestAttribute:
- Overview: ref/Microsoft.Coyote.SystematicTesting/TestAttribute.md
- TestAttribute: ref/Microsoft.Coyote.SystematicTesting/TestAttribute/TestAttribute.md
- TestInitAttribute:
- Overview: ref/Microsoft.Coyote.SystematicTesting/TestInitAttribute.md
- TestInitAttribute: ref/Microsoft.Coyote.SystematicTesting/TestInitAttribute/TestInitAttribute.md
- TestDisposeAttribute:
- Overview: ref/Microsoft.Coyote.SystematicTesting/TestDisposeAttribute.md
- TestDisposeAttribute: ref/Microsoft.Coyote.SystematicTesting/TestDisposeAttribute/TestDisposeAttribute.md
- TestIterationDisposeAttribute:
- Overview: ref/Microsoft.Coyote.SystematicTesting/TestIterationDisposeAttribute.md
- TestIterationDisposeAttribute: ref/Microsoft.Coyote.SystematicTesting/TestIterationDisposeAttribute/TestIterationDisposeAttribute.md
- TestingEngine:
- Overview: ref/Microsoft.Coyote.SystematicTesting/TestingEngine.md
- Create: ref/Microsoft.Coyote.SystematicTesting/TestingEngine/Create.md
- Run: ref/Microsoft.Coyote.SystematicTesting/TestingEngine/Run.md
- Stop: ref/Microsoft.Coyote.SystematicTesting/TestingEngine/Stop.md
- GetReport: ref/Microsoft.Coyote.SystematicTesting/TestingEngine/GetReport.md
- ThrowIfBugFound: ref/Microsoft.Coyote.SystematicTesting/TestingEngine/ThrowIfBugFound.md
- TryEmitReports: ref/Microsoft.Coyote.SystematicTesting/TestingEngine/TryEmitReports.md
- TryEmitCoverageReports: ref/Microsoft.Coyote.SystematicTesting/TestingEngine/TryEmitCoverageReports.md
- RegisterStartIterationCallBack: ref/Microsoft.Coyote.SystematicTesting/TestingEngine/RegisterStartIterationCallBack.md
- RegisterEndIterationCallBack: ref/Microsoft.Coyote.SystematicTesting/TestingEngine/RegisterEndIterationCallBack.md
- InvokeStartIterationCallBacks: ref/Microsoft.Coyote.SystematicTesting/TestingEngine/InvokeStartIterationCallBacks.md
- InvokeEndIterationCallBacks: ref/Microsoft.Coyote.SystematicTesting/TestingEngine/InvokeEndIterationCallBacks.md
- IsTestRewritten: ref/Microsoft.Coyote.SystematicTesting/TestingEngine/IsTestRewritten.md
- SetLogger: ref/Microsoft.Coyote.SystematicTesting/TestingEngine/SetLogger.md
- Dispose: ref/Microsoft.Coyote.SystematicTesting/TestingEngine/Dispose.md
- TestReport: ref/Microsoft.Coyote.SystematicTesting/TestingEngine/TestReport.md
- ReadableTrace: ref/Microsoft.Coyote.SystematicTesting/TestingEngine/ReadableTrace.md
- ReproducibleTrace: ref/Microsoft.Coyote.SystematicTesting/TestingEngine/ReproducibleTrace.md
- Microsoft.Coyote.Web:
- Namespace Overview: ref/Microsoft.Coyote.WebNamespace.md
- RequestControllerMiddlewareExtensions:
- Overview: ref/Microsoft.Coyote.Web/RequestControllerMiddlewareExtensions.md
- UseRequestController: ref/Microsoft.Coyote.Web/RequestControllerMiddlewareExtensions/UseRequestController.md
...