color-profile-test.h revision 30c6998f17591646332badc392826e7b6f75b645
#include <cxxtest/TestSuite.h>
#include <cassert>
#include "inkscape-private.h"
#include "sp-object.h"
#include "document.h"
#include "color-profile.h"
#include "color-profile-fns.h"
/// Dummy functions to keep linker happy
#if !defined(DUMMY_MAIN_TEST_CALLS_SEEN)
#define DUMMY_MAIN_TEST_CALLS_SEEN
int sp_main_gui (int, char const**) { return 0; }
int sp_main_console (int, char const**) { return 0; }
#endif // DUMMY_MAIN_TEST_CALLS_SEEN
{
ColorProfileTest() :
TestSuite(),
_doc(0)
{
}
virtual ~ColorProfileTest() {}
// 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 = 0;
bool canRun = false;
g_type_init();
if ( canRun ) {
// Create the global inkscape object.
if ( tmp ) {
}
}
return suite;
}
{
}
// ---------------------------------------------------------------
void testSetRenderingIntent()
{
struct {
}
const cases[] = {
};
}
}
void testSetLocal()
{
"local",
"something",
};
}
}
}
void testSetName()
{
"name",
"something",
};
}
}
}
};
/*
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 :