I am trying to learn Propery-Based Testing(PBT)I think I know how to implement it but when should I apply PBT?
For example in this case I am trying to compare if the function getCurrentName() returns the expected name. Should I randomize this test?
@Test
public void getNameTest() {
assertEquals(nameProxy, proxyFoto.getCurrentName());
}