blob: 7a5f8a6ade669630cfeeef38e446a3dd40c65fed [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 const OSError([String message = "", int errorCode = noErrorCode])
* Creates an OSError object from a message and an errorCode.
*
* @description Checks that OSError object is created correctly when constructor
* is run with set parameters.
* @author ngl@unipro.ru
*/
import "dart:io";
import "../../../Utils/expect.dart";
main() {
OSError error = new OSError("bug", 100);
Expect.equals(100, error.errorCode);
Expect.equals("bug", error.message);
}