Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/services/sync/tests/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_utils_deferGetSet.js   Sprache: JAVA

 
_(
  "Make sure various combinations of deferGetSet arguments correctly defer getting/setting properties to another object"
);

function run_test() {
  let base = function () {};
  base.prototype = {
    dst: {},

    get a() {
      return "a";
    },
    set b(val) {
      this.dst.b = val + "!!!";
    },
  };
  let src = new base();

  _("get/set a single property");
  Utils.deferGetSet(base, "dst""foo");
  src.foo = "bar";
  Assert.equal(src.dst.foo, "bar");
  Assert.equal(src.foo, "bar");

  _("editing the target also updates the source");
  src.dst.foo = "baz";
  Assert.equal(src.dst.foo, "baz");
  Assert.equal(src.foo, "baz");

  _("handle multiple properties");
  Utils.deferGetSet(base, "dst", ["p1""p2"]);
  src.p1 = "v1";
  src.p2 = "v2";
  Assert.equal(src.p1, "v1");
  Assert.equal(src.dst.p1, "v1");
  Assert.equal(src.p2, "v2");
  Assert.equal(src.dst.p2, "v2");

  _("make sure existing getter keeps its functionality");
  Utils.deferGetSet(base, "dst""a");
  src.a = "not a";
  Assert.equal(src.dst.a, "not a");
  Assert.equal(src.a, "a");

  _("make sure existing setter keeps its functionality");
  Utils.deferGetSet(base, "dst""b");
  src.b = "b";
  Assert.equal(src.dst.b, "b!!!");
  Assert.equal(src.b, "b!!!");
}

88%


¤ Dauer der Verarbeitung: 0.12 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 ist noch experimentell.