Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/netwerk/test/unit/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  test_nestedabout_serialize.js   Sprache: JAVA

 
"use strict";

const BinaryInputStream = Components.Constructor(
  "@mozilla.org/binaryinputstream;1",
  "nsIBinaryInputStream",
  "setInputStream"
);
const BinaryOutputStream = Components.Constructor(
  "@mozilla.org/binaryoutputstream;1",
  "nsIBinaryOutputStream",
  "setOutputStream"
);

const Pipe = Components.Constructor("@mozilla.org/pipe;1""nsIPipe""init");

function run_test() {
  var ios = Cc["@mozilla.org/network/io-service;1"].createInstance(
    Ci.nsIIOService
  );

  var baseURI = ios.newURI("http://example.com/", "UTF-8");

  // This depends on the redirector for about:license having the
  // nsIAboutModule::URI_SAFE_FOR_UNTRUSTED_CONTENT flag.
  var aboutLicense = ios.newURI("about:license""UTF-8", baseURI);

  var pipe = new Pipe(falsefalse, 0, 0, null);
  var output = new BinaryOutputStream(pipe.outputStream);
  var input = new BinaryInputStream(pipe.inputStream);
  output.QueryInterface(Ci.nsIObjectOutputStream);
  input.QueryInterface(Ci.nsIObjectInputStream);

  output.writeCompoundObject(aboutLicense, Ci.nsIURI, true);
  var copy = input.readObject(true);
  copy.QueryInterface(Ci.nsIURI);

  Assert.equal(copy.asciiSpec, aboutLicense.asciiSpec);
  Assert.ok(copy.equals(aboutLicense));
}

Messung V0.5
C=92 H=98 G=94

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

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.