mirror of
https://github.com/ascii-boxes/boxes.git
synced 2024-12-12 18:01:14 +01:00
50 lines
1.9 KiB
C
50 lines
1.9 KiB
C
|
/*
|
||
|
* boxes - Command line filter to draw/remove ASCII boxes around text
|
||
|
* Copyright (c) 1999-2023 Thomas Jensen and the boxes contributors
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public
|
||
|
* License, version 3, as published by the Free Software Foundation.
|
||
|
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
||
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||
|
* details.
|
||
|
* You should have received a copy of the GNU General Public License along with this program.
|
||
|
* If not, see <https://www.gnu.org/licenses/>.
|
||
|
*
|
||
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* Unit tests of the 'remove' module
|
||
|
*/
|
||
|
|
||
|
#ifndef REMOVE_TEST_H
|
||
|
#define REMOVE_TEST_H
|
||
|
|
||
|
#include "bxstring.h"
|
||
|
#include "remove.h"
|
||
|
|
||
|
|
||
|
/* defined here and not in remove.h because it's only visible for testing */
|
||
|
match_result_t *match_outer_shape(int vside, bxstr_t *input_line, bxstr_t *shape_line);
|
||
|
|
||
|
|
||
|
void test_match_outer_shape_null(void **state);
|
||
|
void test_match_outer_shape_left_anchored(void **state);
|
||
|
void test_match_outer_shape_left_shiftable(void **state);
|
||
|
void test_match_outer_shape_left_shortened(void **state);
|
||
|
void test_match_outer_shape_left_not_found(void **state);
|
||
|
void test_match_outer_shape_left_too_far_in(void **state);
|
||
|
void test_match_outer_shape_left_edge(void **state);
|
||
|
void test_match_outer_shape_right_anchored(void **state);
|
||
|
void test_match_outer_shape_right_shiftable(void **state);
|
||
|
void test_match_outer_shape_right_shortened(void **state);
|
||
|
void test_match_outer_shape_right_shortened2(void **state);
|
||
|
void test_match_outer_shape_right_not_found(void **state);
|
||
|
void test_match_outer_shape_right_too_far_in(void **state);
|
||
|
void test_match_outer_shape_right_edge(void **state);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|
||
|
/* vim: set cindent sw=4: */
|