Event.java

1
package g0803.bindingofshiba.events;
2
3
import g0803.bindingofshiba.App;
4
5
public class Event {
6
    private final double dt;
7
    private final App app;
8
9
    public Event(double dt, App app) {
10
        this.dt = dt;
11
        this.app = app;
12
    }
13
14
    public App getApp() {
15 1 1. getApp : replaced return value with null for g0803/bindingofshiba/events/Event::getApp → KILLED
        return app;
16
    }
17
18
    public double getTickTime() {
19 1 1. getTickTime : replaced double return with 0.0d for g0803/bindingofshiba/events/Event::getTickTime → KILLED
        return dt;
20
    }
21
}

Mutations

15

1.1
Location : getApp
Killed by : g0803.bindingofshiba.controller.game.PlayerControllerTest.[engine:junit-jupiter]/[class:g0803.bindingofshiba.controller.game.PlayerControllerTest]/[method:collisionWithMonster()]
replaced return value with null for g0803/bindingofshiba/events/Event::getApp → KILLED

19

1.1
Location : getTickTime
Killed by : g0803.bindingofshiba.controller.game.events.MonsterToWallCollisionEventsControllerTest.[engine:junit-jupiter]/[class:g0803.bindingofshiba.controller.game.events.MonsterToWallCollisionEventsControllerTest]/[method:monsterCollidingWithWall()]
replaced double return with 0.0d for g0803/bindingofshiba/events/Event::getTickTime → KILLED

Active mutators

Tests examined


Report generated by PIT 1.7.0