You are here:Home-Tag: java

Java for Beginners | New Course! | Promo Video

We have a brand new course out where you can learn Java completely from scratch: Java for Beginners! 💥 Want more? Go get the FULL COURSE here: 👉 Java for Beginners 💥 ►► Grab our FREE beginners guide to Java if you're completely new to Java! 👉 Check out our courses at https://courses.javaeasily.com/courses 👉 Listen

By |2023-07-21T17:24:53+00:00September 8th, 2021|Categories: Videos, YouTube|Tags: , , , , |Comments Off on Java for Beginners | New Course! | Promo Video

Introducing lambda expressions for functional programming in Java

Introducing lambda expressions for functional programming in Java In this article we'll take a look at lambda expressions - the powerhouse behind Java's functional programming! Format of Lambda Expressions The syntax of lambda expressions is very intuitive, easy to understand and apply. A lambda expression is made up of: input parameters arrow operator expression/statements block

By |2023-07-26T12:12:39+00:00July 13th, 2020|Categories: Articles, Tutorials|Tags: , , , |Comments Off on Introducing lambda expressions for functional programming in Java

Creating Mocks and Setting up Mockito Unit Tests

Creating Mocks and Setting up Mockito Unit Tests Overview You can create mocks either by using the API or by annotation You set up Mockito based unit tests by either using the Mcokito JUnit runner, including a JUnit 4 rule or by the API Creating Mocks Creating mocks programmatically You can create mocks programmatically by

By |2023-07-26T12:12:14+00:00July 13th, 2020|Categories: Articles, Tutorials|Tags: , , , , |Comments Off on Creating Mocks and Setting up Mockito Unit Tests