File: test_Isotope.cpp

package info (click to toggle)
massxpert2 8.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 62,584 kB
  • sloc: cpp: 35,217; javascript: 22,140; xml: 16,540; makefile: 89; sh: 81
file content (19 lines) | stat: -rw-r--r-- 442 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// ./tests/catch2-tests [section] -s

#include <QDebug>
#include <QString>
#include <catch2/catch_test_macros.hpp>
#include <catch2/catch_approx.hpp>

TEST_CASE("Formula test suite", "[Formula]")
{
  // Set the debugging message formatting pattern.
  qSetMessagePattern(QString("%{file}@%{line}, %{function}(): %{message}"));

  SECTION("..:: Formula initialization ::..", "[Formula]")
  {
    bool ok = true;
    REQUIRE(ok == true);
  }
}