Java Interface
Java Interface Java Interface is something similar to a class which is a collection of some abstract methods. All the methods in an interface are abstract methods Interface can have…
Java Interface Java Interface is something similar to a class which is a collection of some abstract methods. All the methods in an interface are abstract methods Interface can have…
Let's begin with the step by step procedure to connect the real device over WiFi. We will do this without any plugins in android studio. I was using plugins for…
Let's begin with the step-by-step procedure to connect the real device over WiFi. We will do this without any plugins in android studio. I have been using plugins for some…
We will be setting up the local environment for java development. We will follow the simplest way for that. Local Environment like PC I think your are willing to java…
Sun Microsystems developed and released java in 1995. It is a high-level programming language that can run on multiple platforms such as windows, Mac Os UNIX and on others as…
Android Architecture Pattern - MVC stands for Model-View-Controller. While developing big application Architecture Patterns are the right solutions. Model — the data layer, responsible for managing the business logic and handling network…
What is Mockito? Mockito is a mocking framework for Unit testing that helps us to test with more flexibility and efficiency. In this part we will be discussing the very basic…
Unit testing is the process of Testing the smallest part of your source code. Suppose you have so many methods and some of them are dependent on others. To know…