Skip to content

Commit 083a2ef

Browse files
committed
add design pattern
1 parent 65fe5fa commit 083a2ef

8 files changed

+130
-43
lines changed

Code-Retreat and Software-Crafting.html

+42-42
Original file line numberDiff line numberDiff line change
@@ -581,48 +581,48 @@ <h4>1st class citizen</h4>
581581
<img src="images/unit_test_kotlin.png" alt="unit test kotlin" height="100">
582582
<img src="images/unit_test_ruby.png" alt="unit test ruby" height="300">
583583
</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>
624624

625-
</section>
625+
</section>
626626
<section>
627627
<h3>Mocks</h3>
628628

@@ -1460,7 +1460,7 @@ <h4>Pourquoi ?</h4>
14601460
<br><br>
14611461
<div class="fragment">
14621462
<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>
14641464
<p>On critique le code, pas la personne</p>
14651465
<blockquote>
14661466
Hard with code, soft with human

DesignPatterns.html

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
6+
7+
<title>Design Patterns</title>
8+
<meta name="description" content="A framework for easily creating beautiful presentations using HTML">
9+
<meta name="author" content="Gaspard POINTEAU">
10+
11+
<link rel="stylesheet" href="css/reveal.css">
12+
<link rel="stylesheet" href="css/theme/white.css">
13+
14+
<!-- Theme used for syntax highlighting of code -->
15+
<link rel="stylesheet" href="lib/css/zenburn.css">
16+
17+
<!-- Printing and PDF exports -->
18+
<script>
19+
var link = document.createElement('link');
20+
link.rel = 'stylesheet';
21+
link.type = 'text/css';
22+
link.href = window.location.search.match(/print-pdf/gi) ? 'css/print/pdf.css' : 'css/print/paper.css';
23+
document.getElementsByTagName('head')[0].appendChild(link);
24+
25+
</script>
26+
</head>
27+
<body>
28+
<div class="reveal">
29+
<div class="slides">
30+
<section>
31+
<h1>Design Patterns</h1>
32+
<p>
33+
<small>Gaspard POINTEAU<br><a href="http://twitter.com/Gaspard_PO">@Gaspard_PO</a></small>
34+
</p>
35+
</section>
36+
37+
<section>
38+
<h2>Null Object</h2>
39+
<section>
40+
<img src="images/patterns/nullEmpty.jpg" alt="rouleau de PQ vide vs pas de rouleau" width="700">
41+
<p>éviter les Nulls Pointers Exceptions<br>
42+
ex : EmptyList
43+
</p>
44+
</section>
45+
<section>
46+
<img src="images/patterns/Null_Object.png" alt="null object pattern UML diagram" width="700">
47+
</section>
48+
</section>
49+
50+
<section>
51+
<h2>Composite Pattern</h2>
52+
<section>
53+
<img src="images/patterns/composite.png" alt="composite tree" width="500">
54+
</section>
55+
<section>
56+
<img src="images/patterns/composite-uml.png" alt="composite tree" width="700">
57+
</section>
58+
</section>
59+
</div>
60+
</div>
61+
62+
63+
<script src="lib/js/head.min.js"></script>
64+
<script src="js/reveal.js"></script>
65+
66+
<script>
67+
// More info about config & dependencies:
68+
// - https://github.com/hakimel/reveal.js#configuration
69+
// - https://github.com/hakimel/reveal.js#dependencies
70+
Reveal.initialize({
71+
dependencies: [
72+
{src: 'plugin/markdown/marked.js'},
73+
{src: 'plugin/markdown/markdown.js'},
74+
{src: 'plugin/notes/notes.js', async: true},
75+
{
76+
src: 'plugin/highlight/highlight.js', async: true, callback: function () {
77+
hljs.initHighlightingOnLoad();
78+
}
79+
}
80+
]
81+
});
82+
83+
</script>
84+
</body>
85+
</html>

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,5 @@ https://gaspardpo.github.io/formations-agile/clean-code
2020
https://gaspardpo.github.io/formations-agile/ateliers
2121
https://gaspardpo.github.io/formations-agile/Katas
2222

23+
https://gaspardpo.github.io/formations-agile/DesignPatterns
24+

images/patterns/Null_Object.png

3.76 KB
Loading

images/patterns/composite-uml.png

18.9 KB
Loading

images/patterns/composite.png

16.3 KB
Loading

images/patterns/nullEmpty.jpg

29.3 KB
Loading

intro-agile.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1544,7 +1544,7 @@ <h4>Ce n'est pas</h4>
15441544
<br><br>
15451545
<div class="fragment">
15461546
<h4>Toujours respecter les autres</h4>
1547-
<p>Que l'on soit l'auteur-e du code ou la personne qui relit.</p>
1547+
<p>Que l'on soit l'auteur·ice du code ou la personne qui relit.</p>
15481548
<p>On critique le code, pas la personne</p>
15491549
<blockquote>
15501550
Hard with code, soft with human

0 commit comments

Comments
 (0)