Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/js/src/tests/test262/harness/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  assertRelativeDateMs.js

  Sprache: JAVA
 

// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
     Only passes when the provided date is exactly the specified number of
     milliseconds from the Unix epoch
includes: [assertRelativeDateMs.js]
---*/


var thrown;

assertRelativeDateMs(new Date(19700), 0);
assertRelativeDateMs(new Date(1970010000), 0);
assertRelativeDateMs(new Date(1970010001), 1);
assertRelativeDateMs(new Date(197001000, -1), -1);
assertRelativeDateMs(new Date(1970010010), 1000);
assertRelativeDateMs(new Date(19700100, -10), -1000);
assertRelativeDateMs(new Date(1970010200), 120000);
assertRelativeDateMs(new Date(1970010, -200), -120000);
assertRelativeDateMs(new Date(201631213212324), 1460467283024);

thrown = null;
try {
  assertRelativeDateMs(new Date(1), 0);
catch (err) {
  thrown = err;
}
if (!thrown) {
  throw new Error('Expected error, but no error was thrown.');
else if (thrown.constructor !== Test262Error) {
  throw new Error('Expected error of type Test262Error.');
}

thrown = null;
try {
  assertRelativeDateMs(new Date(-1), 0);
catch (err) {
  thrown = err;
}
if (!thrown) {
  throw new Error('Expected error, but no error was thrown.');
else if (thrown.constructor !== Test262Error) {
  throw new Error('Expected error of type Test262Error.');
}

thrown = null;
try {
  assertRelativeDateMs(new Date(19700), 1);
catch (err) {
  thrown = err;
}
if (!thrown) {
  throw new Error('Expected error, but no error was thrown.');
else if (thrown.constructor !== Test262Error) {
  throw new Error('Expected error of type Test262Error.');
}

thrown = null;
try {
  assertRelativeDateMs(new Date(19700), -1);
catch (err) {
  thrown = err;
}
if (!thrown) {
  throw new Error('Expected error, but no error was thrown.');
else if (thrown.constructor !== Test262Error) {
  throw new Error('Expected error of type Test262Error.');
}

thrown = null;
try {
  assertRelativeDateMs(new Date('invalid'), NaN);
catch (err) {
  thrown = err;
}
if (!thrown) {
  throw new Error('Expected error, but no error was thrown.');
else if (thrown.constructor !== Test262Error) {
  throw new Error('Expected error of type Test262Error.');
}

reportCompare(00);

Messung V0.5 in Prozent
C=92 H=97 G=94

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-06-05) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.