blob: b6563ff17e59a6ac8b553886fd83e7623af2a81b [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.
// @dart = 2.9
/// @assertion InternetAddressType type
/// The type of the [InternetAddress] specified what IP protocol.
/// @description Checks that type is set to [IPv4] for IPv4 addresses
/// @author iarkh@unipro.ru
import "../../../Utils/expect.dart";
import "dart:io";
main() {
InternetAddress address = new InternetAddress("192.168.16.23");
Expect.equals(InternetAddressType.IPv4, address.type);
address = new InternetAddress("1.1.0.1");
Expect.equals(InternetAddressType.IPv4, address.type);
}