sp-style-elem-test.h revision e647cfe241e6bf42f3b2932d7891d73597bd8ae9
#ifndef SEEN_SP_STYLE_ELEM_TEST_H
#define SEEN_SP_STYLE_ELEM_TEST_H
#include <cxxtest/TestSuite.h>
#include "test-helpers.h"
#include "sp-style-elem.h"
{
SPStyleElemTest() :
_doc(0)
{
}
{
if ( _doc )
{
}
}
{
if ( style_elem ) {
}
}
static SPStyleElemTest *createSuite()
{
}
// -------------------------------------------------------------------------
// -------------------------------------------------------------------------
void testSetType()
{
}
void testWrite()
{
if ( !sp_document_repr_doc(_doc) ) {
return; // evil early return
}
{
if ( typ )
{
}
}
}
void testBuild()
{
if ( !sp_document_repr_doc(_doc) ) {
return; // evil early return
}
/* Some checks relevant to the read_content test below. */
{
}
}
void testReadContent()
{
if ( !sp_document_repr_doc(_doc) ) {
return; // evil early return
}
Inkscape::XML::Node *const content_repr = sp_document_repr_doc(_doc)->createTextNode(".myclass { }");
}
};
#endif // SEEN_SP_STYLE_ELEM_TEST_H
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :