Skip to content

Commit

Permalink
change order of the slides
Browse files Browse the repository at this point in the history
  • Loading branch information
Barys Ilyushonak committed Dec 11, 2019
1 parent 22140a1 commit 77e580f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 16 deletions.
29 changes: 14 additions & 15 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,6 @@
## Why does property-based testing matter?
</textarea>
</section>
<section>
<img src="img/DI-test-results.png">
<aside class="notes">
Who likes tests?
Who writes tests?

We do care about test in DeviceIdent team. That helps us to operate and develop stable software over the time.

Today we will talk about:
- Why does property-based testing could help you
- What is the role of PBT and we will take a look at existing patterns
- We will see examples in existing libraries
</aside>
</section>
<section>
<div style="position:absolute; top: 20%; left: 10%; width: 40%;">
<p data-markdown>
Expand Down Expand Up @@ -96,8 +82,21 @@
My name is Boris, I started my career as a Java developer, built MVC/enterprise applications,
Then I built real-time messaging integration solutions and did performance optimization based on JVM/Linux
Later on I made a project with Erlang and moved to scala.
</aside>
</section>
<section>
<img src="img/DI-test-results.png">
<aside class="notes">
I do care about tests. That helps us to operate and develop stable software over the time.
I do believe that automated testing is important and helpful practice which helps to
* have healthy continuous delivery
* check regressions in our software
* understand and document intention in the code

Currently I'm working at the DeviceIdent team at RiskIdent.
Today we will talk about:
- Why does property-based testing could help us
- What is the role of PBT and we will take a look at existing patterns
- We will see examples in existing libraries
</aside>
</section>
<section>
Expand Down
2 changes: 1 addition & 1 deletion src/test/scala/de/riskident/meetup/TryTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ class TryTest extends FunSuite with Matchers with Discipline {
}


checkAll("Try [String => Int] => Int => Option[Boolean]", MonadTests[Try].stackUnsafeMonad[Int => Int, Int, Int])
checkAll("Try [Int => Int] => Int => Option[Boolean]", MonadTests[Try].stackUnsafeMonad[Int => Int, Int, Int])
}

0 comments on commit 77e580f

Please sign in to comment.