Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1. Use Test-Driven Development to implement a password strength validator. Remember: write a JUnit test first before implementing anything new make small changes to make
1. Use Test-Driven Development to implement a password strength validator. Remember: write a JUnit test first before implementing anything new make small changes to make the test pass - refactor Stage 1: At this stage there is no UI, no Android Activity, just a class (Validator.java) with a validate method that checks whether a string is a sufficiently strong password according to some set of rules, and returns the number of rules that the string passed Begin with implementing these 2 rules: it is not "password" (case insensitive) it is at least 8 characters long
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started