removed Car class
This commit is contained in:
parent
7d8a3bf686
commit
fa906a2b59
|
@ -1,22 +0,0 @@
|
||||||
package com.baeldung.testing.assertj.custom;
|
|
||||||
|
|
||||||
public class Car {
|
|
||||||
private String type;
|
|
||||||
private Person owner;
|
|
||||||
|
|
||||||
public Car(String type) {
|
|
||||||
this.type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Person getOwner() {
|
|
||||||
return owner;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOwner(Person owner) {
|
|
||||||
this.owner = owner;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue