summaryrefslogtreecommitdiffstats
path: root/storageframework/src/tests/status/htmlstatustest.cpp
blob: 2c3ef818e8eaff43f8c130163acb81f441df6b90 (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
27
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/fastos/fastos.h>
#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