Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/testing/modules/tests/xpcshell/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  test_mockRegistrar.js   Sprache: JAVA

 
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */


const { MockRegistrar } = ChromeUtils.importESModule(
  "resource://testing-common/MockRegistrar.sys.mjs"
);

function platformInfo(injectedValue) {
  this.platformVersion = injectedValue;
}

platformInfo.prototype = {
  platformVersion: "some version",
  platformBuildID: "some id",
  QueryInterface: ChromeUtils.generateQI(["nsIPlatformInfo"]),
};

add_test(function test_register() {
  let localPlatformInfo = {
    platformVersion: "local version",
    platformBuildID: "local id",
    QueryInterface: ChromeUtils.generateQI(["nsIPlatformInfo"]),
  };

  MockRegistrar.register("@mozilla.org/xre/app-info;1", localPlatformInfo);
  Assert.equal(
    Cc["@mozilla.org/xre/app-info;1"].createInstance(Ci.nsIPlatformInfo)
      .platformVersion,
    "local version"
  );
  run_next_test();
});

add_test(function test_register_with_arguments() {
  MockRegistrar.register("@mozilla.org/xre/app-info;1", platformInfo, [
    "override",
  ]);
  Assert.equal(
    Cc["@mozilla.org/xre/app-info;1"].createInstance(Ci.nsIPlatformInfo)
      .platformVersion,
    "override"
  );
  run_next_test();
});

add_test(function test_register_twice() {
  MockRegistrar.register("@mozilla.org/xre/app-info;1", platformInfo, [
    "override",
  ]);
  Assert.equal(
    Cc["@mozilla.org/xre/app-info;1"].createInstance(Ci.nsIPlatformInfo)
      .platformVersion,
    "override"
  );

  MockRegistrar.register("@mozilla.org/xre/app-info;1", platformInfo, [
    "override again",
  ]);
  Assert.equal(
    Cc["@mozilla.org/xre/app-info;1"].createInstance(Ci.nsIPlatformInfo)
      .platformVersion,
    "override again"
  );
  run_next_test();
});

Messung V0.5
C=86 H=97 G=91

¤ Dauer der Verarbeitung: 0.20 Sekunden  (vorverarbeitet)  ¤

*© 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.