removed Car class

This commit is contained in:
Tom Hombergs 2018-02-02 21:01:22 +01:00
parent 7d8a3bf686
commit fa906a2b59
1 changed files with 0 additions and 22 deletions

View File

@ -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;
}
}