Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/GAP/pkg/semigroups/libsemigroups/tests/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 18.5.2025 mit Größe 3 kB image not shown  

Quelle  test-timer.cpp   Sprache: C

 
// libsemigroups - C++ library for semigroups and monoids
// Copyright (C) 2019 James D. Mitchell
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
//

#include <chrono>    // for nanoseconds, milliseconds, durati...
#include <iostream>  // for string, ostringstream, ostream
#include <sstream>   // for ostringstream
#include <string>    // for operator==
#include <thread>    // for sleep_for

#include "catch.hpp"                // for LIBSEMIGROUPS_TEST_CASE
#include "libsemigroups/timer.hpp"  // for detail::Timer, operator<<
#include "test-main.hpp"

namespace libsemigroups {

  LIBSEMIGROUPS_TEST_CASE("Timer",
                          "001",
                          "string method (1 argument)",
                          "[quick]") {
    detail::Timer            t;
    std::chrono::nanoseconds ns(1);
    REQUIRE(t.string(ns) == "1ns");
    ns *= 10;
    REQUIRE(t.string(ns) == "10ns");
    ns *= 10;
    REQUIRE(t.string(ns) == "100ns");
    ns *= 10;
    REQUIRE(t.string(ns) == "1000ns");
    ns *= 10;
    REQUIRE(t.string(ns) == "10μs");
    ns *= 10;
    REQUIRE(t.string(ns) == "100μs");
    ns *= 10;
    REQUIRE(t.string(ns) == "1000μs");
    ns *= 10;
    REQUIRE(t.string(ns) == "10ms");
    ns *= 10;
    REQUIRE(t.string(ns) == "100ms");
    ns *= 10;
    REQUIRE(t.string(ns) == "1000ms");
    ns *= 10;
    REQUIRE(t.string(ns) == "10000ms");
    ns *= 10;
    REQUIRE(t.string(ns) == "1m40s");
    ns *= 10;
    REQUIRE(t.string(ns) == "16m40s");
    ns *= 10;
    REQUIRE(t.string(ns) == "2h46m");
    ns *= 10;
    REQUIRE(t.string(ns) == "27h46m");
    ns *= 10;
    REQUIRE(t.string(ns) == "277h46m");
  }

  LIBSEMIGROUPS_TEST_CASE("Timer",
                          "002",
                          "string method (0 arguments)",
                          "[quick]") {
    detail::Timer t;
    std::this_thread::sleep_for(std::chrono::milliseconds(10));
    t.string();  // Can't really test this
  }

  LIBSEMIGROUPS_TEST_CASE("Timer""003""reset/elapsed method""[quick]") {
    detail::Timer t;
    std::this_thread::sleep_for(std::chrono::milliseconds(10));
    auto e = std::chrono::duration_cast<std::chrono::milliseconds>(t.elapsed());
    REQUIRE(e.count() > 0);
    REQUIRE(e.count() < 1000);
    t.reset();
    std::this_thread::sleep_for(std::chrono::milliseconds(10));
    e = std::chrono::duration_cast<std::chrono::milliseconds>(t.elapsed());
    REQUIRE(e.count() > 0);
    REQUIRE(e.count() < 1000);
  }

  LIBSEMIGROUPS_TEST_CASE("Timer""004""operator<<""[quick]") {
    std::ostringstream os;
    detail::Timer      t;
    os << t;
  }
}  // namespace libsemigroups

94%


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