preferences-test.h revision ed8f6fa0f86221f8752699a14c481a164c6f3379
/** @file
* @brief Unit tests for the Preferences object
*/
/* Authors:
* Krzysztof KosiĆski <tweenk.pl@gmail.com>
*
* This file is released into the public domain.
*/
#include <cxxtest/TestSuite.h>
#include "preferences.h"
// test observer
value(0) {}
{
}
int value;
};
void setUp() {
}
void tearDown() {
}
void testStartingState()
{
}
void testOverwrite()
{
}
void testDefaultReturn()
{
}
void testLimitedReturn()
{
// simple case
// the below may seem quirky but this behaviour is intended
// corner cases
}
void testKeyObserverNotification()
{
}
{
// test that filtering works properly
}
void testPreferencesEntryMethods()
{
}
};
/*
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:fileencoding=utf-8:textwidth=99 :