Skip to content

Instantly share code, notes, and snippets.

@iamsurya-dev
Last active February 6, 2018 16:35
Show Gist options
  • Save iamsurya-dev/f6b8beb6a2b2355d0bc223b320efa2c0 to your computer and use it in GitHub Desktop.
Save iamsurya-dev/f6b8beb6a2b2355d0bc223b320efa2c0 to your computer and use it in GitHub Desktop.
public class People {
public String getName() {
return PersonUtil.getPerson();
}
}
// Util Class that does something
public class PersonUtil {
// This is the static function that we gotta mock
public static People getPerson() {
return "Surya";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment