@@ -41,10 +41,13 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
41
41
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
42
42
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
43
43
repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
44
+ repositoryManagerEvents . GitAheadBehindStatusUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
45
+ repositoryManagerEvents . IsBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
46
+ repositoryManagerEvents . IsNotBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
44
47
45
- repositoryManagerListener . DidNotReceive ( ) . OnIsBusyChanged ( Args . Bool ) ;
48
+ repositoryManagerListener . Received ( ) . OnIsBusyChanged ( Args . Bool ) ;
46
49
repositoryManagerListener . Received ( ) . CurrentBranchUpdated ( Args . NullableConfigBranch , Args . NullableConfigRemote ) ;
47
- repositoryManagerListener . DidNotReceive ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
50
+ repositoryManagerListener . Received ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
48
51
repositoryManagerListener . DidNotReceive ( ) . GitStatusUpdated ( Args . GitStatus ) ;
49
52
repositoryManagerListener . DidNotReceive ( ) . GitLocksUpdated ( Args . GitLocks ) ;
50
53
repositoryManagerListener . Received ( ) . GitLogUpdated ( Args . GitLogs ) ;
@@ -75,6 +78,9 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
75
78
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
76
79
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
77
80
repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
81
+ repositoryManagerEvents . GitAheadBehindStatusUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
82
+ repositoryManagerEvents . IsBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
83
+ repositoryManagerEvents . IsNotBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
78
84
79
85
repositoryManagerListener . ClearReceivedCalls ( ) ;
80
86
repositoryManagerEvents . Reset ( ) ;
@@ -122,6 +128,9 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
122
128
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
123
129
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
124
130
repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
131
+ repositoryManagerEvents . GitAheadBehindStatusUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
132
+ repositoryManagerEvents . IsBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
133
+ repositoryManagerEvents . IsNotBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
125
134
126
135
repositoryManagerListener . ClearReceivedCalls ( ) ;
127
136
repositoryManagerEvents . Reset ( ) ;
@@ -196,6 +205,9 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
196
205
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
197
206
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
198
207
repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
208
+ repositoryManagerEvents . GitAheadBehindStatusUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
209
+ repositoryManagerEvents . IsBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
210
+ repositoryManagerEvents . IsNotBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
199
211
200
212
repositoryManagerListener . ClearReceivedCalls ( ) ;
201
213
repositoryManagerEvents . Reset ( ) ;
@@ -269,6 +281,9 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
269
281
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
270
282
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
271
283
repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
284
+ repositoryManagerEvents . GitAheadBehindStatusUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
285
+ repositoryManagerEvents . IsBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
286
+ repositoryManagerEvents . IsNotBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
272
287
273
288
repositoryManagerListener . ClearReceivedCalls ( ) ;
274
289
repositoryManagerEvents . Reset ( ) ;
@@ -316,6 +331,9 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
316
331
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
317
332
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
318
333
repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
334
+ repositoryManagerEvents . GitAheadBehindStatusUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
335
+ repositoryManagerEvents . IsBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
336
+ repositoryManagerEvents . IsNotBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
319
337
320
338
repositoryManagerListener . ClearReceivedCalls ( ) ;
321
339
repositoryManagerEvents . Reset ( ) ;
@@ -363,6 +381,9 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
363
381
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
364
382
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
365
383
repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
384
+ repositoryManagerEvents . GitAheadBehindStatusUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
385
+ repositoryManagerEvents . IsBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
386
+ repositoryManagerEvents . IsNotBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
366
387
367
388
repositoryManagerListener . ClearReceivedCalls ( ) ;
368
389
@@ -428,6 +449,9 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
428
449
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
429
450
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
430
451
repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
452
+ repositoryManagerEvents . GitAheadBehindStatusUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
453
+ repositoryManagerEvents . IsBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
454
+ repositoryManagerEvents . IsNotBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
431
455
432
456
repositoryManagerListener . ClearReceivedCalls ( ) ;
433
457
repositoryManagerEvents . Reset ( ) ;
@@ -498,6 +522,9 @@ await Initialize(TestRepoMasterTwoRemotes, initializeRepository: false,
498
522
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
499
523
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
500
524
repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
525
+ repositoryManagerEvents . GitAheadBehindStatusUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
526
+ repositoryManagerEvents . IsBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
527
+ repositoryManagerEvents . IsNotBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
501
528
502
529
repositoryManagerListener . ClearReceivedCalls ( ) ;
503
530
repositoryManagerEvents . Reset ( ) ;
@@ -512,11 +539,12 @@ await RepositoryManager.CreateBranch("branch2", "another/master")
512
539
repositoryManagerEvents . CurrentBranchUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
513
540
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
514
541
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
542
+ repositoryManagerEvents . GitAheadBehindStatusUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
515
543
repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
516
544
517
545
repositoryManagerListener . Received ( ) . OnIsBusyChanged ( Args . Bool ) ;
518
546
repositoryManagerListener . Received ( ) . CurrentBranchUpdated ( Args . NullableConfigBranch , Args . NullableConfigRemote ) ;
519
- repositoryManagerListener . DidNotReceive ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
547
+ repositoryManagerListener . Received ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
520
548
repositoryManagerListener . DidNotReceive ( ) . GitStatusUpdated ( Args . GitStatus ) ;
521
549
repositoryManagerListener . DidNotReceive ( ) . GitLocksUpdated ( Args . GitLocks ) ;
522
550
repositoryManagerListener . Received ( ) . GitLogUpdated ( Args . GitLogs ) ;
@@ -569,6 +597,9 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
569
597
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
570
598
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
571
599
repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
600
+ repositoryManagerEvents . GitAheadBehindStatusUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
601
+ repositoryManagerEvents . IsBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
602
+ repositoryManagerEvents . IsNotBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
572
603
573
604
repositoryManagerListener . ClearReceivedCalls ( ) ;
574
605
@@ -613,6 +644,9 @@ await Initialize(TestRepoMasterCleanUnsynchronized, initializeRepository: false,
613
644
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
614
645
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
615
646
repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
647
+ repositoryManagerEvents . GitAheadBehindStatusUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
648
+ repositoryManagerEvents . IsBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
649
+ repositoryManagerEvents . IsNotBusy . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
616
650
617
651
repositoryManagerListener . ClearReceivedCalls ( ) ;
618
652
repositoryManagerEvents . Reset ( ) ;
@@ -624,10 +658,11 @@ await Initialize(TestRepoMasterCleanUnsynchronized, initializeRepository: false,
624
658
repositoryManagerEvents . WaitForNotBusy ( ) ;
625
659
626
660
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
661
+ repositoryManagerEvents . GitAheadBehindStatusUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
627
662
628
663
repositoryManagerListener . Received ( ) . OnIsBusyChanged ( Args . Bool ) ;
629
664
repositoryManagerListener . DidNotReceive ( ) . CurrentBranchUpdated ( Args . NullableConfigBranch , Args . NullableConfigRemote ) ;
630
- repositoryManagerListener . DidNotReceive ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
665
+ repositoryManagerListener . Received ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
631
666
repositoryManagerListener . DidNotReceive ( ) . GitStatusUpdated ( Args . GitStatus ) ;
632
667
repositoryManagerListener . DidNotReceive ( ) . GitLocksUpdated ( Args . GitLocks ) ;
633
668
repositoryManagerListener . DidNotReceive ( ) . GitLogUpdated ( Args . GitLogs ) ;
0 commit comments