Skip to content
Snippets Groups Projects
Commit 7daa1b26 authored by SAEZ Theo's avatar SAEZ Theo
Browse files

Tests réussis

parent aa695e0f
No related branches found
No related tags found
No related merge requests found
Showing
with 0 additions and 3 deletions
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
......@@ -6,7 +6,6 @@ import static org.assertj.core.api.Assertions.*;
class MatrixGrayImageTest {
@Test
@Disabled
void testGetWidth() {
assertThat(new MatrixGrayImage(0,0).getWidth()).isEqualTo(0);
assertThat(new MatrixGrayImage(10,20).getWidth()).isEqualTo(10);
......@@ -14,7 +13,6 @@ class MatrixGrayImageTest {
}
@Test
@Disabled
void testGetHeight() {
assertThat(new MatrixGrayImage(0,0).getHeight()).isEqualTo(0);
assertThat(new MatrixGrayImage(10,20).getHeight()).isEqualTo(20);
......@@ -22,7 +20,6 @@ class MatrixGrayImageTest {
}
@Test
@Disabled
void testGetPixel_whenPixelHasBeenSet() {
GrayColor grey1 = new ByteGrayColor(0.2);
GrayColor grey2 = new ByteGrayColor(0.8);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment