summaryrefslogtreecommitdiffstats
path: root/storageframework/src/tests/status/htmlstatustest.cpp
blob: 413968b9109147664f9934a5b44e98b2c8cdd7f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/vdstestlib/cppunit/macros.h>
#include <vespa/storageframework/generic/status/htmlstatusreporter.h>

namespace storage {
namespace framework {

struct HtmlStatusTest : public CppUnit::TestFixture {

    void testHtmlStatus();

    CPPUNIT_TEST_SUITE(HtmlStatusTest);
    CPPUNIT_TEST(testHtmlStatus);
    CPPUNIT_TEST_SUITE_END();
};

CPPUNIT_TEST_SUITE_REGISTRATION(HtmlStatusTest);

void
HtmlStatusTest::testHtmlStatus()
{
}

} // framework
} // storage