doc-per-case-test.h revision c29094c5613297521e948b2f5dc230dcd40eb852
/*
* Test fixture with SPDocument per entire test case.
*
* Author:
* Jon A. Cruz <jon@joncruz.org>
*
* Copyright (C) 2015 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "document.h"
/**
* Simple fixture that creates a single SPDocument to be shared between all tests
* in this test case.
*/
{
static void SetUpTestCase();
static void TearDownTestCase();
static SPDocument *_doc;
};
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :