mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
tests: Properly define placeholders
And include all needed headers, to catch misdefinitions. Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
This commit is contained in:
parent
cdc352edf9
commit
bc295bddd5
6 changed files with 19 additions and 7 deletions
|
@ -35,6 +35,9 @@
|
|||
#include <widgets/box.h>
|
||||
#include <widgets/widget.h>
|
||||
#include <widgets/widget-internal.h>
|
||||
#include "rofi.h"
|
||||
#include "xrmoptions.h"
|
||||
#include "helper.h"
|
||||
unsigned int test =0;
|
||||
#define TASSERT( a ) { \
|
||||
assert ( a ); \
|
||||
|
@ -50,7 +53,7 @@ unsigned int test =0;
|
|||
} \
|
||||
}
|
||||
|
||||
void config_parse_set_property ( G_GNUC_UNUSED const void *p )
|
||||
void config_parse_set_property ( G_GNUC_UNUSED const Property *p )
|
||||
{
|
||||
}
|
||||
char * rofi_expand_path ( G_GNUC_UNUSED const char *path )
|
||||
|
|
|
@ -37,6 +37,8 @@
|
|||
#include <mode-private.h>
|
||||
#include <dialogs/help-keys.h>
|
||||
#include <xkbcommon/xkbcommon.h>
|
||||
#include "rofi.h"
|
||||
#include "x11-helper.h"
|
||||
#include <keyb.h>
|
||||
#include <helper.h>
|
||||
|
||||
|
@ -45,7 +47,7 @@
|
|||
void rofi_add_error_message ( G_GNUC_UNUSED GString *msg )
|
||||
{
|
||||
}
|
||||
int monitor_active ( G_GNUC_UNUSED void *d )
|
||||
int monitor_active ( G_GNUC_UNUSED workarea *d )
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
@ -63,11 +65,11 @@ void rofi_view_get_current_monitor ( G_GNUC_UNUSED int *width, G_GNUC_UNUSED int
|
|||
{
|
||||
|
||||
}
|
||||
void * rofi_view_get_active ( void )
|
||||
RofiViewState * rofi_view_get_active ( void )
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
gboolean rofi_view_trigger_action ( G_GNUC_UNUSED void *state, G_GNUC_UNUSED KeyBindingAction action )
|
||||
gboolean rofi_view_trigger_action ( G_GNUC_UNUSED RofiViewState *state, G_GNUC_UNUSED KeyBindingAction action )
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -35,6 +35,9 @@
|
|||
#include <widgets/scrollbar.h>
|
||||
#include <widgets/widget.h>
|
||||
#include <widgets/widget-internal.h>
|
||||
#include "rofi.h"
|
||||
#include "xrmoptions.h"
|
||||
#include "helper.h"
|
||||
unsigned int test =0;
|
||||
#define TASSERT( a ) { \
|
||||
assert ( a ); \
|
||||
|
@ -54,7 +57,7 @@ char * helper_get_theme_path ( const char *file )
|
|||
{
|
||||
return g_strdup ( file );
|
||||
}
|
||||
void config_parse_set_property ( G_GNUC_UNUSED const void *p )
|
||||
void config_parse_set_property ( G_GNUC_UNUSED const Property *p )
|
||||
{
|
||||
}
|
||||
void rofi_add_error_message ( G_GNUC_UNUSED GString *msg )
|
||||
|
|
|
@ -38,6 +38,7 @@
|
|||
#include <rofi.h>
|
||||
#include <cairo-xlib.h>
|
||||
#include "settings.h"
|
||||
#include "xrmoptions.h"
|
||||
|
||||
static int test = 0;
|
||||
unsigned int normal_window_mode = 0;
|
||||
|
@ -49,7 +50,7 @@ unsigned int normal_window_mode = 0;
|
|||
|
||||
#include "view.h"
|
||||
|
||||
void config_parse_set_property ( G_GNUC_UNUSED void *p )
|
||||
void config_parse_set_property ( G_GNUC_UNUSED const Property *p )
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
#include "settings.h"
|
||||
#include "theme.h"
|
||||
#include "widgets/widget-internal.h"
|
||||
#include "widgets/textbox.h"
|
||||
|
||||
|
||||
#include <check.h>
|
||||
|
|
|
@ -34,12 +34,14 @@
|
|||
#include <string.h>
|
||||
#include <widgets/widget.h>
|
||||
#include <widgets/widget-internal.h>
|
||||
#include "rofi.h"
|
||||
#include "xrmoptions.h"
|
||||
unsigned int test =0;
|
||||
#define TASSERT( a ) { \
|
||||
assert ( a ); \
|
||||
printf ( "Test %3i passed (%s)\n", ++test, # a ); \
|
||||
}
|
||||
void config_parse_set_property ( G_GNUC_UNUSED const void *p )
|
||||
void config_parse_set_property ( G_GNUC_UNUSED const Property *p )
|
||||
{
|
||||
}
|
||||
void rofi_add_error_message ( G_GNUC_UNUSED GString *msg )
|
||||
|
|
Loading…
Reference in a new issue