mirror of
https://github.com/weechat/weechat.git
synced 2026-07-02 15:53:12 +02:00
core: move buffer functions and remove them from header file
This commit is contained in:
+100
-100
@@ -1077,6 +1077,106 @@ TEST(GuiBuffer, ClearAll)
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_get_next_active_buffer
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, GetNextActiveBuffer)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_get_previous_active_buffer
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, GetPreviousActiveBuffer)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_visited_get_index_previous
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, VisitedGetIndexPrevious)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_visited_get_index_next
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, VisitedGetIndexNext)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_visited_search
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, VisitedSearch)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_visited_search_by_number
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, VisitedSearchByNumber)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_visited_remove
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, VisitedRemove)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_visited_remove_by_buffer
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, VisitedRemoveByBuffer)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_visited_remove_all
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, VisitedRemoveAll)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_visited_add
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, VisitedAdd)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_close
|
||||
@@ -1107,26 +1207,6 @@ TEST(GuiBuffer, SetActiveBuffer)
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_get_next_active_buffer
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, GetNextActiveBuffer)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_get_previous_active_buffer
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, GetPreviousActiveBuffer)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_switch_active_buffer
|
||||
@@ -1327,86 +1407,6 @@ TEST(GuiBuffer, InputMoveToBuffer)
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_visited_search
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, VisitedSearch)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_visited_search_by_number
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, VisitedSearchByNumber)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_visited_remove
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, VisitedRemove)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_visited_remove_by_buffer
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, VisitedRemoveByBuffer)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_visited_remove_all
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, VisitedRemoveAll)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_visited_add
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, VisitedAdd)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_visited_get_index_previous
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, VisitedGetIndexPrevious)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_visited_get_index_next
|
||||
*/
|
||||
|
||||
TEST(GuiBuffer, VisitedGetIndexNext)
|
||||
{
|
||||
/* TODO: write tests */
|
||||
}
|
||||
|
||||
/*
|
||||
* Tests functions:
|
||||
* gui_buffer_jump_smart
|
||||
|
||||
Reference in New Issue
Block a user