diff --git a/lectures/revealjs/03-build-tools-and-some-testing.adoc b/lectures/revealjs/03-build-tools-and-some-testing.adoc
new file mode 100644
index 0000000000000000000000000000000000000000..777b5df5be7e6d8bbad65b6059a2e2873ed8b73d
--- /dev/null
+++ b/lectures/revealjs/03-build-tools-and-some-testing.adoc
@@ -0,0 +1,58 @@
+= Build tools. Introduction to testing 
+:customcss: slides.css
+:icons: font
+
+++++
+	<img id="main-logo" class="main-logo" src="images/template/main_logo_eng_no_text.png" width="300" alt="ntnu logo"/>
+++++
+
+[.smaller-80][.center-paragraph]
+IT1901 Fall 2019 - 3rd Lecture
+
+[background-color = "#124990"]
+[color = "#fff6d5"]
+== Overview
+
+- Build tools
+- Gradle
+- Unit testing
+- JUnit
+- Testfx
+
+
+++++
+ <div id="footer" class="footer">
+ 	<div style="display:table-row;">
+     <span class="element" style="width:150px;">
+     	<a href="https://www.ntnu.no" target="_blank">
+     		<img 	id="footer-logo" class="footer-logo" 
+     				src="images/template/logo_ntnu.png" 
+     				alt="ntnu logo" height="28"/>
+     	</a>
+     </span>
+     <span class="element" style="width:300px;">| IT1901 - 3rd lecture </span>
+     <span class="element">| Build tools. Introduction to testing </span>
+     <span class="element">&nbsp;&nbsp;&nbsp;&nbsp;</span>
+  </div>   
+ </div>
+ 
+ <div id="vertical-ntnu-name" class="vertical-ntnu-name">
+ 	<span class="helper"></span>
+ 	<img src="images/template/vertical-ntnu-name.png" alt="Norwegian University of Science and Technology" />
+ </div>
+ 
+ <script type="text/javascript">
+     window.addEventListener("load", function() {
+         revealDiv = document.querySelector("body div.reveal")
+         footer = document.getElementById("footer");
+         revealDiv.appendChild(footer);
+         
+         titleSlideDiv = document.querySelector("div.slides section.title")
+         mainLogo = document.getElementById("main-logo");
+         titleSlideDiv.prepend(mainLogo);
+         
+         vertName =  document.getElementById("vertical-ntnu-name");
+         revealDiv.appendChild(vertName);
+     } );
+ </script>
+++++
\ No newline at end of file