ActionCheckUpdate.java

1
package com.jsql.view.swing.menubar;
2
3
import com.jsql.util.GitUtil.ShowOnConsole;
4
import com.jsql.view.swing.util.MediatorHelper;
5
6
import java.awt.event.ActionEvent;
7
import java.awt.event.ActionListener;
8
9
public class ActionCheckUpdate implements ActionListener, Runnable {
10
11
    @Override
12
    public void run() {
13 1 1. run : removed call to com/jsql/util/GitUtil::checkUpdate → NO_COVERAGE
        MediatorHelper.model().getMediatorUtils().getGitUtil().checkUpdate(ShowOnConsole.YES);
14
    }
15
16
    @Override
17
    public void actionPerformed(ActionEvent e) {
18 1 1. actionPerformed : removed call to java/lang/Thread::start → NO_COVERAGE
        new Thread(this, "ThreadCheckUpdate").start();
19
    }
20
}

Mutations

13

1.1
Location : run
Killed by : none
removed call to com/jsql/util/GitUtil::checkUpdate → NO_COVERAGE

18

1.1
Location : actionPerformed
Killed by : none
removed call to java/lang/Thread::start → NO_COVERAGE

Active mutators

Tests examined


Report generated by PIT 1.16.1