@@ -41,10 +41,13 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
4141 repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
4242 repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
4343 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 ( ) ;
4447
45- repositoryManagerListener . DidNotReceive ( ) . OnIsBusyChanged ( Args . Bool ) ;
48+ repositoryManagerListener . Received ( ) . OnIsBusyChanged ( Args . Bool ) ;
4649 repositoryManagerListener . Received ( ) . CurrentBranchUpdated ( Args . NullableConfigBranch , Args . NullableConfigRemote ) ;
47- repositoryManagerListener . DidNotReceive ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
50+ repositoryManagerListener . Received ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
4851 repositoryManagerListener . DidNotReceive ( ) . GitStatusUpdated ( Args . GitStatus ) ;
4952 repositoryManagerListener . DidNotReceive ( ) . GitLocksUpdated ( Args . GitLocks ) ;
5053 repositoryManagerListener . Received ( ) . GitLogUpdated ( Args . GitLogs ) ;
@@ -75,6 +78,9 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
7578 repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
7679 repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
7780 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 ( ) ;
7884
7985 repositoryManagerListener . ClearReceivedCalls ( ) ;
8086 repositoryManagerEvents . Reset ( ) ;
@@ -122,6 +128,9 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
122128 repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
123129 repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
124130 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 ( ) ;
125134
126135 repositoryManagerListener . ClearReceivedCalls ( ) ;
127136 repositoryManagerEvents . Reset ( ) ;
@@ -196,6 +205,9 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
196205 repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
197206 repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
198207 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 ( ) ;
199211
200212 repositoryManagerListener . ClearReceivedCalls ( ) ;
201213 repositoryManagerEvents . Reset ( ) ;
@@ -269,6 +281,9 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
269281 repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
270282 repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
271283 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 ( ) ;
272287
273288 repositoryManagerListener . ClearReceivedCalls ( ) ;
274289 repositoryManagerEvents . Reset ( ) ;
@@ -316,6 +331,9 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
316331 repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
317332 repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
318333 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 ( ) ;
319337
320338 repositoryManagerListener . ClearReceivedCalls ( ) ;
321339 repositoryManagerEvents . Reset ( ) ;
@@ -363,6 +381,9 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
363381 repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
364382 repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
365383 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 ( ) ;
366387
367388 repositoryManagerListener . ClearReceivedCalls ( ) ;
368389
@@ -428,6 +449,9 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
428449 repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
429450 repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
430451 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 ( ) ;
431455
432456 repositoryManagerListener . ClearReceivedCalls ( ) ;
433457 repositoryManagerEvents . Reset ( ) ;
@@ -498,6 +522,9 @@ await Initialize(TestRepoMasterTwoRemotes, initializeRepository: false,
498522 repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
499523 repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
500524 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 ( ) ;
501528
502529 repositoryManagerListener . ClearReceivedCalls ( ) ;
503530 repositoryManagerEvents . Reset ( ) ;
@@ -512,11 +539,12 @@ await RepositoryManager.CreateBranch("branch2", "another/master")
512539 repositoryManagerEvents . CurrentBranchUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
513540 repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
514541 repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
542+ repositoryManagerEvents . GitAheadBehindStatusUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
515543 repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
516544
517545 repositoryManagerListener . Received ( ) . OnIsBusyChanged ( Args . Bool ) ;
518546 repositoryManagerListener . Received ( ) . CurrentBranchUpdated ( Args . NullableConfigBranch , Args . NullableConfigRemote ) ;
519- repositoryManagerListener . DidNotReceive ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
547+ repositoryManagerListener . Received ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
520548 repositoryManagerListener . DidNotReceive ( ) . GitStatusUpdated ( Args . GitStatus ) ;
521549 repositoryManagerListener . DidNotReceive ( ) . GitLocksUpdated ( Args . GitLocks ) ;
522550 repositoryManagerListener . Received ( ) . GitLogUpdated ( Args . GitLogs ) ;
@@ -569,6 +597,9 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
569597 repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
570598 repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
571599 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 ( ) ;
572603
573604 repositoryManagerListener . ClearReceivedCalls ( ) ;
574605
@@ -613,6 +644,9 @@ await Initialize(TestRepoMasterCleanUnsynchronized, initializeRepository: false,
613644 repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
614645 repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
615646 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 ( ) ;
616650
617651 repositoryManagerListener . ClearReceivedCalls ( ) ;
618652 repositoryManagerEvents . Reset ( ) ;
@@ -624,10 +658,11 @@ await Initialize(TestRepoMasterCleanUnsynchronized, initializeRepository: false,
624658 repositoryManagerEvents . WaitForNotBusy ( ) ;
625659
626660 repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
661+ repositoryManagerEvents . GitAheadBehindStatusUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
627662
628663 repositoryManagerListener . Received ( ) . OnIsBusyChanged ( Args . Bool ) ;
629664 repositoryManagerListener . DidNotReceive ( ) . CurrentBranchUpdated ( Args . NullableConfigBranch , Args . NullableConfigRemote ) ;
630- repositoryManagerListener . DidNotReceive ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
665+ repositoryManagerListener . Received ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
631666 repositoryManagerListener . DidNotReceive ( ) . GitStatusUpdated ( Args . GitStatus ) ;
632667 repositoryManagerListener . DidNotReceive ( ) . GitLocksUpdated ( Args . GitLocks ) ;
633668 repositoryManagerListener . DidNotReceive ( ) . GitLogUpdated ( Args . GitLogs ) ;
0 commit comments