summaryrefslogtreecommitdiffstats
path: root/storageframework/src/tests/status/htmlstatustest.cpp
blob: 14c62321f504fcdbf8a554e5ece32938d6c9c2e7 (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 2016 Yahoo Inc. 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