Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 


Quelle  era.js   Sprache: JAVA

 
// |reftest| skip-if(!this.hasOwnProperty("Intl"))

const {
  Era, Year, Month, Day, Literal
} = DateTimeFormatParts;

const tests = {
  "en": [
    {
      options: {
        day: "numeric",
        month: "numeric",
        year: "numeric",
        era: "short",
        timeZone: "UTC",
      },
      dates: [
        {
          date: new Date("1970-01-01T00:00:00.000Z"),
          parts: [
            Month("1"), Literal("/"), Day("1"), Literal("/"), Year("1970"), Literal(" "), Era("AD")
          ],
        },
        {
          date: new Date("-001970-01-01T00:00:00.000Z"),
          parts: [
            Month("1"), Literal("/"), Day("1"), Literal("/"), Year("1971"), Literal(" "), Era("BC")
          ],
        },
      ],
    },
  ],
  "en-001": [
    {
      options: {
        day: "numeric",
        month: "numeric",
        year: "numeric",
        era: "short",
        timeZone: "UTC",
      },
      dates: [
        {
          date: new Date("1970-01-01T00:00:00.000Z"),
          parts: [
            Day("1"), Literal("/"), Month("1"), Literal("/"), Year("1970"), Literal(" "), Era("AD")
          ],
        },
        {
          date: new Date("-001970-01-01T00:00:00.000Z"),
          parts: [
            Day("1"), Literal("/"), Month("1"), Literal("/"), Year("1971"), Literal(" "), Era("BC")
          ],
        },
      ],
    },
  ],
  "de": [
    {
      options: {
        day: "numeric",
        month: "numeric",
        year: "numeric",
        era: "short",
        timeZone: "UTC",
      },
      dates: [
        {
          date: new Date("1970-01-01T00:00:00.000Z"),
          parts: [
            Day("01"), Literal("."), Month("01"), Literal("."), Year("1970"), Literal(" "), Era("n. Chr.")
          ],
        },
        {
          date: new Date("-001970-01-01T00:00:00.000Z"),
          parts: [
            Day("01"), Literal("."), Month("01"), Literal("."), Year("1971"), Literal(" "), Era("v. Chr.")
          ],
        },
      ],
    },
  ],
  "fr": [
    {
      options: {
        day: "numeric",
        month: "numeric",
        year: "numeric",
        era: "short",
        timeZone: "UTC",
      },
      dates: [
        {
          date: new Date("1970-01-01T00:00:00.000Z"),
          parts: [
            Day("01"), Literal("/"), Month("01"), Literal("/"), Year("1970"), Literal(" "), Era("ap. J.-C.")
          ],
        },
        {
          date: new Date("-001970-01-01T00:00:00.000Z"),
          parts: [
            Day("01"), Literal("/"), Month("01"), Literal("/"), Year("1971"), Literal(" "), Era("av. J.-C.")
          ],
        },
      ],
    },
  ],
  "es": [
    {
      options: {
        day: "numeric",
        month: "numeric",
        year: "numeric",
        era: "short",
        timeZone: "UTC",
      },
      dates: [
        {
          date: new Date("1970-01-01T00:00:00.000Z"),
          parts: [
            Day("1"), Literal("/"), Month("1"), Literal("/"), Year("1970"), Literal(" "), Era("d. C.")
          ],
        },
        {
          date: new Date("-001970-01-01T00:00:00.000Z"),
          parts: [
            Day("1"), Literal("/"), Month("1"), Literal("/"), Year("1971"), Literal(" "), Era("a. C.")
          ],
        },
      ],
    },
  ],
  "nl": [
    {
      options: {
        day: "numeric",
        month: "numeric",
        year: "numeric",
        era: "short",
        timeZone: "UTC",
      },
      dates: [
        {
          date: new Date("1970-01-01T00:00:00.000Z"),
          parts: [
            Day("1"), Literal("/"), Month("1"), Literal("/"), Year("1970"), Literal(" "), Era("n.Chr.")
          ],
        },
        {
          date: new Date("-001970-01-01T00:00:00.000Z"),
          parts: [
            Day("1"), Literal("/"), Month("1"), Literal("/"), Year("1971"), Literal(" "), Era("v.Chr.")
          ],
        },
      ],
    },
  ],
  "ja": [
    {
      options: {
        day: "numeric",
        month: "numeric",
        year: "numeric",
        era: "short",
        timeZone: "UTC",
      },
      dates: [
        {
          date: new Date("1970-01-01T00:00:00.000Z"),
          parts: [
            Era("西暦"), Year("1970"), Literal("/"), Month("1"), Literal("/"), Day("1")
          ],
        },
        {
          date: new Date("-001970-01-01T00:00:00.000Z"),
          parts: [
            Era("紀元前"), Year("1971"), Literal("/"), Month("1"), Literal("/"), Day("1")
          ],
        },
      ],
    },
  ],
  "zh": [
    {
      options: {
        day: "numeric",
        month: "numeric",
        year: "numeric",
        era: "short",
        timeZone: "UTC",
      },
      dates: [
        {
          date: new Date("1970-01-01T00:00:00.000Z"),
          parts: [
            Era("公元"), Literal(" "), Year("1970"), Literal("-"), Month("01"), Literal("-"), Day("01")
          ],
        },
        {
          date: new Date("-001970-01-01T00:00:00.000Z"),
          parts: [
            Era("公元前"), Literal(" "), Year("1971"), Literal("-"), Month("01"), Literal("-"), Day("01")
          ],
        },
      ],
    },
  ],
  "ar-EG": [
    {
      options: {
        day: "numeric",
        month: "numeric",
        year: "numeric",
        era: "short",
        timeZone: "UTC",
      },
      dates: [
        {
          date: new Date("1970-01-01T00:00:00.000Z"),
          parts: [
            Day("٠١"), Literal("-"), Month("٠١"), Literal("-"), Year("١٩٧٠"), Literal(" "), Era(")
          ],
        },
        {
          date: new Date("-001970-01-01T00:00:00.000Z"),
          parts: [
            Day("٠١"), Literal("-"), Month("٠١"), Literal("-"), Year("١٩٧١"), Literal(" "), Era(.م")
          ],
        },
      ],
    },
  ],
};

for (let [locale, inputs] of Object.entries(tests)) {
  for (let {options, dates} of inputs) {
    let dtf = new Intl.DateTimeFormat(locale, options);
    for (let {date, parts} of dates) {
      assertParts(dtf, date, parts);
     }
  }
}

if (typeof reportCompare === "function")
    reportCompare(0, 0, "ok");

Messung V0.5
C=96 H=94 G=94

¤ Dauer der Verarbeitung: 0.16 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.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge