mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 20:59:45 +01:00
add Prometheus library
This commit is contained in:
38
Prometheus/testsuite/src/GaugeTest.h
Normal file
38
Prometheus/testsuite/src/GaugeTest.h
Normal 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
|
||||
Reference in New Issue
Block a user