| 115 | //------------------------------------------------------------------------------ |
| 116 | |
| 117 | TEST_F(GdImageRendererTest, shouldRenderImageWithAxisLabels) |
| 118 | { |
| 119 | std::string expected_output( |
| 120 | "Input file: ../test/data/test_file_stereo_8bit_64spp_wav.dat\n" |
| 121 | "Channels: 1\n" |
| 122 | "Sample rate: 16000 Hz\n" |
| 123 | "Bits: 8\n" |
| 124 | "Samples per pixel: 64\n" |
| 125 | "Length: 1774 points\n" |
| 126 | "Image dimensions: 1000x300 pixels\n" |
| 127 | "Channels: 1\n" |
| 128 | "Sample rate: 16000 Hz\n" |
| 129 | "Samples per pixel: 64\n" |
| 130 | "Start time: 5 seconds\n" |
| 131 | "Start index: 1250\n" |
| 132 | "Buffer size: 1774\n" |
| 133 | "Axis labels: yes\n" |
| 134 | "Waveform style: normal\n" |
| 135 | "Amplitude scale: 1\n" |
| 136 | "Output file: " |
| 137 | ); |
| 138 | |
| 139 | testImageRendering(true, false, false, expected_output); |
| 140 | } |
| 141 | |
| 142 | //------------------------------------------------------------------------------ |
| 143 |
nothing calls this directly
no test coverage detected