MCPcopy Index your code
hub / github.com/assertj/assertj / Car

Class Car

src/test/java/org/assertj/core/test/VehicleFactory.java:32–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30 }
31
32 static class Car implements Vehicle {
33 private String brand;
34
35 public Car(String brand) {
36 this.brand = brand;
37 }
38
39 @Override
40 public String getName() {
41 return brand;
42 }
43 }
44}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected