blob: ed08bc95c733411a33acb42811922a9cf841bb26 [file] [log] [blame]
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:expect/expect.dart';
final values = <int>[];
class Mock {
noSuchMethod(Invocation i) {
var expected = i.isGetter ? #_x : const Symbol("_x=");
Expect.equals(expected, i.memberName);
values.add(i.positionalArguments[0]);
}
}
class Foo {
int _x;
}
class Bar extends Mock implements Foo {
final int _x = 42;
}
void main() {
{
Bar b = new Bar();
Expect.equals(b._x, 42);
b._x = 123;
Expect.listEquals([123], values);
values.clear();
}
{
// It works the same if called statically through the Foo interface.
Foo b = new Bar();
Expect.equals(b._x, 42);
b._x = 123;
Expect.listEquals([123], values);
values.clear();
}
}