Coverage Summary for Class: BuildingType (io.github.unisim.building)
| Class | Class, % | Method, % | Line, % |
|---|---|---|---|
| BuildingType | 100% (1/1) | 100% (2/2) | 100% (5/5) |
package io.github.unisim.building;
/**
* Represents the different types of buildings as each type
* has its' own counter.
*/
public enum BuildingType {
RECREATION,
LEARNING,
SLEEPING,
EATING
}