File: formatter_tests0.c

package info (click to toggle)
cgreen 1.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,400 kB
  • sloc: ansic: 11,064; makefile: 417; cpp: 401; sh: 327; python: 177; xml: 33; sed: 8
file content (22 lines) | stat: -rw-r--r-- 531 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <cgreen/cgreen.h>
#include <cgreen/mocks.h>

#include "stream.h"

Describe(Formatter);
BeforeEach(Formatter) {}
AfterEach(Formatter) {}

int one_character_stream(void *stream) { return 'a'; }

void expect_one_letter_paragraph(void *stream, char *paragraph) {
    assert_that(paragraph, is_equal_to_string("a"));
}

Ensure(Formatter, makes_one_letter_paragraph_from_one_character_input) {
    by_paragraph(
            &one_character_stream,
            NULL,
            &expect_one_letter_paragraph,
            NULL);
}