color-profile-test.h revision c0092c87b724182672defa4f5f75a82c27f017dc
#ifndef SEEN_COLOR_PROFILE_TEST_H
#define SEEN_COLOR_PROFILE_TEST_H
#include <cxxtest/TestSuite.h>
#include <cassert>
#include "test-helpers.h"
#include "color-profile.h"
#include "color-profile-fns.h"
{
ColorProfileTest() :
_doc(0)
{
}
{
if ( _doc )
{
}
}
{
Inkscape::ColorProfile *prof = static_cast<Inkscape::ColorProfile *>(g_object_new(COLORPROFILE_TYPE, NULL));
if ( prof ) {
}
}
}
// createSuite and destroySuite get us per-suite setup and teardown
// without us having to worry about static initialization order, etc.
static ColorProfileTest *createSuite()
{
ColorProfileTest* suite = Inkscape::createSuiteAndDocument<ColorProfileTest>( createSuiteSubclass );
return suite;
}
{
}
// ---------------------------------------------------------------
// ---------------------------------------------------------------
// ---------------------------------------------------------------
void testSetRenderingIntent()
{
struct {
}
const cases[] = {
};
Inkscape::ColorProfile *prof = static_cast<Inkscape::ColorProfile *>(g_object_new(COLORPROFILE_TYPE, NULL));
}
}
void testSetLocal()
{
"local",
"something",
};
Inkscape::ColorProfile *prof = static_cast<Inkscape::ColorProfile *>(g_object_new(COLORPROFILE_TYPE, NULL));
}
}
}
void testSetName()
{
"name",
"something",
};
Inkscape::ColorProfile *prof = static_cast<Inkscape::ColorProfile *>(g_object_new(COLORPROFILE_TYPE, NULL));
}
}
}
};
#endif // SEEN_COLOR_PROFILE_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 :