blob: 9659c2a06f02f5c7981797867a0205e2f6d30bd8 [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.
*/
/**
* @assertion bool contentChanged
* final
* If the content was changed and not only the attributes, contentChanged is
* true.
* @description Checks that this property returns true if the content was
* changed
* @author sgrekhov@unipro.ru
*/
import "dart:io";
import "../../../Utils/expect.dart";
import "../file_utils.dart";
main() async {
await inSandbox(_main);
}
_main(Directory sandbox) async {
Directory dir = getTempDirectorySync(parent: sandbox);
File f = getTempFileSync(parent: dir);
asyncStart();
await testFileSystemEvent<FileSystemModifyEvent>(dir,
createEvent: () async {
f.writeAsStringSync("Lily was here");
}, test: (FileSystemEvent? event) {
Expect.isTrue((event as FileSystemModifyEvent).contentChanged);
});
asyncEnd();
}