-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathTestFunctions.java
More file actions
34 lines (24 loc) · 827 Bytes
/
TestFunctions.java
File metadata and controls
34 lines (24 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import io.github.studyandmasti.PiratedData;
public class TestFunctions extends PiratedData {
public static void main(String[] args) {
PiratedData pd = new PiratedData();
String firstName =pd.firstNameGenerator();
System.out.println(firstName);
String lastName = pd.lastNameGenerator();
System.out.println(lastName);
String fullName = pd.fullNameGenerator();
System.out.println(fullName);
long mobno = pd.mobileNumberGenerator();
System.out.println(mobno);
long aadhar = pd.aadharNumberGenerator();
System.out.println(aadhar);
String email = pd.emailIdGenerator();
System.out.println(email);
String userId = pd.userIdGenerator();
System.out.println(userId);
char[] pass= pd.passwordGenerator(8);
System.out.println(pass);
int num = pd.randomNumberGenerator(45);
System.out.println(num);
}
}