OneWay binding stops working after the target manually updated

I have such WPF binding code: TestModel source = new TestModel(); TestModel target = new TestModel(); Bind(source, target, BindingMode.OneWay); source.Attribute = "1"; AssertAreEqual(target.Attr...