@@ -581,48 +581,48 @@ <h4>1st class citizen</h4>
581
581
< img src ="images/unit_test_kotlin.png " alt ="unit test kotlin " height ="100 ">
582
582
< img src ="images/unit_test_ruby.png " alt ="unit test ruby " height ="300 ">
583
583
</ section >
584
- < section >
585
- < h3 > assert par défaut</ h3 >
586
-
587
- < pre > < code data-trim ="java ">
588
- assertTrue(bool); assertFalse(bool);
589
- fail();
590
- assertEquals(actual, expected) ;
591
- assertEquals(actualDouble, expectedDouble, delta) ;
592
- assertNotEquals(actual, expected)
593
- assertArrayEquals(actual[], expected[]);
594
- assertSame, assertNotSame, assertNull, assertNotNull
595
- ...
596
- </ code > </ pre >
597
- </ section >
598
- < section >
599
- < h3 > Fluent assertion</ h3 >
600
- < pre > < code data-trim ="java ">
601
- assertThat(actual).isEqualTo(expected);
602
-
603
- assertThat(list).isNotEmpty().hasSize(5)
604
- .isSorted()
605
- .containsExactlyInAnyOrder(value1, value2)
606
- .allMatch(insideValue -> insideValue.getSomeField().equal(something))
607
-
608
- assertThat(contentOf(xFile)).startsWith("The Truth")
609
- .contains("Is Out").endsWith("There");
610
- assertThat(directory).isDirectory().hasSameContentAs(otherDirectory);
611
-
612
- assertThatExceptionOfType(SomeException::class.java).isThrownBy({ methodToTest() })
613
- .withMessageContaining("boom")
614
- .withCauseInstanceOf(IOException::class.java)
615
-
616
- assertThat(jack).isEqualToComparingFieldByFieldRecursively(jackClone);
617
- </ code > </ pre >
618
-
619
- < p > Java : assertJ, Harmcrest< br >
620
- Javascript : chai, jest< br >
621
- PHP : phpspec, atoum < br >
622
- Go : gomega, Ruby : rspec< br >
623
- </ p >
584
+ < section >
585
+ < h3 > assert par défaut</ h3 >
586
+
587
+ < pre > < code data-trim ="java ">
588
+ assertTrue(bool); assertFalse(bool);
589
+ fail();
590
+ assertEquals(actual, expected) ;
591
+ assertEquals(actualDouble, expectedDouble, delta) ;
592
+ assertNotEquals(actual, expected)
593
+ assertArrayEquals(actual[], expected[]);
594
+ assertSame, assertNotSame, assertNull, assertNotNull
595
+ ...
596
+ </ code > </ pre >
597
+ </ section >
598
+ < section >
599
+ < h3 > Fluent assertion</ h3 >
600
+ < pre > < code data-trim ="java ">
601
+ assertThat(actual).isEqualTo(expected);
602
+
603
+ assertThat(list).isNotEmpty().hasSize(5)
604
+ .isSorted()
605
+ .containsExactlyInAnyOrder(value1, value2)
606
+ .allMatch(insideValue -> insideValue.getSomeField().equal(something))
607
+
608
+ assertThat(contentOf(xFile)).startsWith("The Truth")
609
+ .contains("Is Out").endsWith("There");
610
+ assertThat(directory).isDirectory().hasSameContentAs(otherDirectory);
611
+
612
+ assertThatExceptionOfType(SomeException::class.java).isThrownBy({ methodToTest() })
613
+ .withMessageContaining("boom")
614
+ .withCauseInstanceOf(IOException::class.java)
615
+
616
+ assertThat(jack).isEqualToComparingFieldByFieldRecursively(jackClone);
617
+ </ code > </ pre >
618
+
619
+ < p > Java : assertJ, Harmcrest< br >
620
+ Javascript : chai, jest< br >
621
+ PHP : phpspec, atoum < br >
622
+ Go : gomega, Ruby : rspec< br >
623
+ </ p >
624
624
625
- </ section >
625
+ </ section >
626
626
< section >
627
627
< h3 > Mocks</ h3 >
628
628
@@ -1460,7 +1460,7 @@ <h4>Pourquoi ?</h4>
1460
1460
< br > < br >
1461
1461
< div class ="fragment ">
1462
1462
< h4 > Toujours respecter les autres</ h4 >
1463
- < p > Que l'on soit l'auteur-e du code ou la personne qui relit.</ p >
1463
+ < p > Que l'on soit l'auteur·ice du code ou la personne qui relit.</ p >
1464
1464
< p > On critique le code, pas la personne</ p >
1465
1465
< blockquote >
1466
1466
Hard with code, soft with human
0 commit comments