blob: bc4ae6ae4f367a00b393b3cc9db98dac187dbecb [file] [log] [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "ios/chrome/browser/shared/model/utils/fake_observable_boolean.h"
@implementation FakeObservableBoolean
@synthesize value = _value;
@synthesize observer = _observer;
- (void)setValue:(BOOL)value {
if (_value != value) {
_value = value;
[_observer booleanDidChange:self];
}
}
@end
@implementation TestBooleanObserver
@synthesize updateCount = _updateCount;
- (void)booleanDidChange:(id<ObservableBoolean>)observableBoolean {
_updateCount++;
}
@end