add Prometheus library

This commit is contained in:
Günter Obiltschnig
2022-05-17 08:18:54 +02:00
parent 9577af8c6c
commit 3db861083f
103 changed files with 15824 additions and 5 deletions

View File

@@ -0,0 +1,38 @@
//
// GaugeTest.h
//
// Definition of the GaugeTest class.
//
// Copyright (c) 2022, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef GaugeTest_INCLUDED
#define GaugeTest_INCLUDED
#include "CppUnit/TestCase.h"
class GaugeTest: public CppUnit::TestCase
{
public:
GaugeTest(const std::string& name);
~GaugeTest() = default;
void testBasicBehavior();
void testInvalidName();
void testLabels();
void testExport();
void setUp();
void tearDown();
static CppUnit::Test* suite();
};
#endif // GaugeTest_INCLUDED