From 85ce10ced01ca52bf0051213f1ab9c8faca3466a Mon Sep 17 00:00:00 2001 From: Yadickson Soto Date: Mon, 16 Dec 2024 12:05:10 -0300 Subject: [PATCH] mutation badge support Add pitest and stryker mutation test support --- README.md | 19 + src/badges/index.js | 3 +- src/badges/mutation.js | 23 + src/badges/mutation.test.js | 22 + src/reports/index.js | 3 +- src/reports/mutation.js | 60 ++ src/reports/mutation.test.js | 22 + src/types.js | 2 + test/data/mutation/pitest/mutations.xml | 963 +++++++++++++++++++++++ test/data/mutation/stryker/mutation.json | 1 + 10 files changed, 1116 insertions(+), 2 deletions(-) create mode 100644 src/badges/mutation.js create mode 100644 src/badges/mutation.test.js create mode 100644 src/reports/mutation.js create mode 100644 src/reports/mutation.test.js create mode 100644 test/data/mutation/pitest/mutations.xml create mode 100644 test/data/mutation/stryker/mutation.json diff --git a/README.md b/README.md index 7af1698..a13a761 100644 --- a/README.md +++ b/README.md @@ -176,6 +176,25 @@ matching and valid report file. ➡️ `{repo}-[{ref}-]lcov-coverage.json` +### Mutation + +Write the mutation report to a file matching: + +- `**/mutations.xml` +- `**/mutation.json` + +This is the default format and location with Cobertura, but most code coverage +tools support this format too, natively or using an additional reporter: + +- **Maven**: `mvn org.pitest:pitest-maven:mutationCoverage` → `target/pit-reports/mutations.xml` +- **Stryker with Npm**: `stryker run stryker.conf.json` → `reports/mutation/mutation.json` + + +The mutation will be extracted from the `status` attribute of the +`` tag from xml file or `status` attribute from json file. + +➡️ `{repo}-[{ref}-]mutation-mutation.json` + ## Notes Storing badge JSON files on a Gist may seem tedious, but: diff --git a/src/badges/index.js b/src/badges/index.js index 35e3156..1c7609c 100644 --- a/src/badges/index.js +++ b/src/badges/index.js @@ -1,12 +1,13 @@ import * as core from '@actions/core'; import * as tests from './tests.js'; import * as coverage from './coverage.js'; +import * as mutation from './mutation.js'; /** * Available badge generators * @type {{ [key: string]: { buildBadge: BadgeGenerator } }} */ -const generators = { tests, coverage }; +const generators = { tests, coverage, mutation }; /** * Build a badge file from a report. diff --git a/src/badges/mutation.js b/src/badges/mutation.js new file mode 100644 index 0000000..bd1a3cf --- /dev/null +++ b/src/badges/mutation.js @@ -0,0 +1,23 @@ +/** + * Build a mutation badge. + * @param {MutationReportData} data Mutation report data + * @returns {BadgeContent} Badge content + */ +export function buildBadge(data) { + const content = {}; + content.message = `${Math.floor(data.mutation)}%`; + if (data.mutation <= 0) { + content.color = 'red'; + } else if (data.mutation < 50) { + content.color = 'orange'; + } else if (data.mutation < 80) { + content.color = 'yellow'; + } else if (data.mutation < 90) { + content.color = 'yellowgreen'; + } else if (data.mutation < 95) { + content.color = 'green'; + } else { + content.color = 'brightgreen'; + } + return content; +} diff --git a/src/badges/mutation.test.js b/src/badges/mutation.test.js new file mode 100644 index 0000000..c94fb27 --- /dev/null +++ b/src/badges/mutation.test.js @@ -0,0 +1,22 @@ +import assert from 'assert/strict'; +import { buildBadge } from './mutation.js'; + +describe('badges/mutation', () => { + describe('#buildBadge()', () => { + const tests = [ + { data: { mutation: 0 }, expected: { message: '0%', color: 'red' } }, + { data: { mutation: 45.2 }, expected: { message: '45%', color: 'orange' } }, + { data: { mutation: 75.8 }, expected: { message: '75%', color: 'yellow' } }, + { data: { mutation: 85.0 }, expected: { message: '85%', color: 'yellowgreen' } }, + { data: { mutation: 93.6 }, expected: { message: '93%', color: 'green' } }, + { data: { mutation: 98.7 }, expected: { message: '98%', color: 'brightgreen' } }, + { data: { mutation: 100 }, expected: { message: '100%', color: 'brightgreen' } } + ]; + for (const { data, expected } of tests) { + it(`should return a ${expected.color} "${expected.message}" badge for ${data.mutation}% mutation`, () => { + const actual = buildBadge(data); + assert.deepEqual(actual, expected); + }); + } + }); +}); diff --git a/src/reports/index.js b/src/reports/index.js index fc279e0..b51a9da 100644 --- a/src/reports/index.js +++ b/src/reports/index.js @@ -4,12 +4,13 @@ import * as junit from './junit.js'; import * as cobertura from './cobertura.js'; import * as jacoco from './jacoco.js'; import * as lcov from './lcov.js'; +import * as mutation from './mutation.js'; /** * Available report loaders * @type {{ [key: string]: { getReports: ReportsLoader } }} */ -const loaders = { go, junit, cobertura, jacoco, lcov }; +const loaders = { go, junit, cobertura, jacoco, lcov, mutation }; /** * Load all available reports in the current workspace. diff --git a/src/reports/mutation.js b/src/reports/mutation.js new file mode 100644 index 0000000..c3e94be --- /dev/null +++ b/src/reports/mutation.js @@ -0,0 +1,60 @@ +import * as core from '@actions/core'; +import { promises as fs } from 'fs'; +import { join } from 'path'; +import { globNearest } from '../util/index.js'; + +/** + * Load mutation reports using Mutation format. + * @param {string} root Root search directory + * @returns Mutation mutation report + */ +export async function getReports(root) { + core.info('Load Mutation mutation report'); + const patterns = [ + join(root, '**/mutations.xml'), + join(root, '**/mutation.json'), + ]; + const files = await globNearest(patterns); + /** @type {Omit[]} */ + const reports = []; + for (const f of files) { + core.info(`Load Mutation report '${f}'`); + const contents = await fs.readFile(f, { encoding: 'utf8' }); + + const mutationMatches = contents.match(/(?<== 1) { + killedMatches = contents.match(/(['"]status['"]\:['"]Killed['"])/ig); + survivedMatches = contents.match(/(['"]status['"]\:['"]Survived['"])/ig); + noCoverageMatches = contents.match(/(['"]status['"]\:['"]NoCoverage['"])/ig); + } + + const killed = parseInt((killedMatches)?.length ?? '0'); + const survived = parseInt((survivedMatches)?.length ?? '0'); + const noCoverage = parseInt((noCoverageMatches)?.length ?? '0'); + + const total = (killed + survived + noCoverage) === 0 ? 1 : (killed + survived + noCoverage) + const mutation = parseFloat(parseFloat(killed * 100 / total).toFixed(2)); + reports.push({ type: 'mutation', data: { mutation } }); + break; + } + + core.info(`Loaded ${reports.length} Mutation report(s)`); + + return reports; +} diff --git a/src/reports/mutation.test.js b/src/reports/mutation.test.js new file mode 100644 index 0000000..fead360 --- /dev/null +++ b/src/reports/mutation.test.js @@ -0,0 +1,22 @@ +import assert from 'assert/strict'; +import { join } from 'path'; +import { getReports } from './mutation.js'; + +describe('reports/mutation', () => { + describe('#getReports()', () => { + it('should return a mutation report from pitest', async () => { + const reports = await getReports(join(process.cwd(), 'test/data/mutation/pitest')); + assert.equal(reports.length, 1); + assert.deepEqual(reports, [ + { type: 'mutation', data: { mutation: 9.58 } } + ]); + }); + it('should return a mutation report from stryker', async () => { + const reports = await getReports(join(process.cwd(), 'test/data/mutation/stryker')); + assert.equal(reports.length, 1); + assert.deepEqual(reports, [ + { type: 'mutation', data: { mutation: 13.79 } } + ]); + }); + }); +}); diff --git a/src/types.js b/src/types.js index 5dd1b7e..e18a3aa 100644 --- a/src/types.js +++ b/src/types.js @@ -8,9 +8,11 @@ * @typedef {{ type: string, format: string, data: ReportData }} Report A loaded report * @typedef {{ type: 'tests', data: TestReportData } & Report} TestReport A loaded test report * @typedef {{ type: 'coverage', data: CoverageReportData } & Report} CoverageReport A loaded coverage report + * @typedef {{ type: 'mutation', data: MutationReportData } & Report} MutationReport A loaded mutation report * @typedef {{ [key: string]: number }} ReportData Report data * @typedef {{ tests?: number, passed: number, failed: number, skipped: number }} TestReportData Test report data * @typedef {{ coverage: number }} CoverageReportData Coverage report data + * @typedef {{ mutation: number }} MutationReportData Mutation report data * @typedef {(root: string) => Promise[]>} ReportsLoader A report(s) loader */ diff --git a/test/data/mutation/pitest/mutations.xml b/test/data/mutation/pitest/mutations.xml new file mode 100644 index 0000000..11d7ae3 --- /dev/null +++ b/test/data/mutation/pitest/mutations.xml @@ -0,0 +1,963 @@ + + +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Parameter;)V588org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator51negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Parameter;)V588org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator82negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Parameter;)V590org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator183negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Parameter;)V596org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator8931negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Parameter;)V573org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator51negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Parameter;)V573org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator82negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Parameter;)V575org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator183negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Parameter;)V581org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator8931negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Parameter;)V560org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator51negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Parameter;)V560org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator82negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Parameter;)V566org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator6724negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;771org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator156replaced return value with "" for com/github/yadickson/Clazz::getArrayOutputFilePath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;747org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator166replaced return value with "" for com/github/yadickson/Clazz::getArrayOutputPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;707org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator166replaced return value with "" for com/github/yadickson/Clazz::getArrayOutputTestPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;687org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator156replaced return value with "" for com/github/yadickson/Clazz::getColumnOutputPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;759org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator156replaced return value with "" for com/github/yadickson/Clazz::getCursorOutputFilePath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;755org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator166replaced return value with "" for com/github/yadickson/Clazz::getCursorOutputPath +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;811org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator81replaced return value with "" for com/github/yadickson/Clazz::getDirectoryPackage +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;767org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator156replaced return value with "" for com/github/yadickson/Clazz::getDomainOutputFilePath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;743org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator166replaced return value with "" for com/github/yadickson/Clazz::getDomainOutputPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;Lcom/github/yadickson/Clazz::getFileNameMapperPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;779org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator156replaced return value with "" for com/github/yadickson/Clazz::getFileNameObjectPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;Lcom/github/yadickson/Clazz::getFileNamePath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;Lcom/github/yadickson/Clazz::getFileNamePath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;Lcom/github/yadickson/Clazz::getFileNameTableFieldPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;Lcom/github/yadickson/Clazz::getFileNameTablePath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;803org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator156replaced return value with "" for com/github/yadickson/Clazz::getFileNameTypePath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;Lcom/github/yadickson/Clazz::getInterfaceFileNamePath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;751org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator166replaced return value with "" for com/github/yadickson/Clazz::getInterfaceOutputPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;695org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator135replaced return value with "" for com/github/yadickson/Clazz::getMapperOutputPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;775org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator156replaced return value with "" for com/github/yadickson/Clazz::getObjectOutputFilePath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;763org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator166replaced return value with "" for com/github/yadickson/Clazz::getObjectOutputPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;711org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator166replaced return value with "" for com/github/yadickson/Clazz::getObjectOutputTestPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;666org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator2310replaced return value with "" for com/github/yadickson/Clazz::getOutputPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;679org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator2310replaced return value with "" for com/github/yadickson/Clazz::getOutputTestPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;739org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator156replaced return value with "" for com/github/yadickson/Clazz::getRepositoryMapperOutputFilePath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;715org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator156replaced return value with "" for com/github/yadickson/Clazz::getRepositoryOutputFilePath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;699org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator166replaced return value with "" for com/github/yadickson/Clazz::getRepositoryOutputPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;703org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator166replaced return value with "" for com/github/yadickson/Clazz::getRepositoryOutputTestPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;719org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator156replaced return value with "" for com/github/yadickson/Clazz::getRepositorySpOutputFilePath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;683org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator166replaced return value with "" for com/github/yadickson/Clazz::getTableOutputPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;691org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator156replaced return value with "" for com/github/yadickson/Clazz::getTypeOutputPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;731org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator156replaced return value with "" for com/github/yadickson/Clazz::getUtilOutputFilePath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;735org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator156replaced return value with "" for com/github/yadickson/Clazz::getUtilOutputFileTestPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;723org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator145replaced return value with "" for com/github/yadickson/Clazz::getUtilOutputPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;727org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator166replaced return value with "" for com/github/yadickson/Clazz::getUtilOutputTestPath +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V817org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator4012removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V647org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator3312removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V651org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator5719removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V652org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator7425removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V497org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator3213negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V499org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator4415negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V508org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator19579negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V512org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator22892negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V517org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator287114negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V528org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator339131negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V530org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator351133negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V537org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator448173negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V541org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator481186negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V546org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator540208negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V495org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator2711removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V500org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator6021removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V502org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator8129removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V503org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator10841removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V504org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator13553removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V505org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator16265removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V506org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator18977removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V509org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator22291removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V514org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator257102removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V515org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator281112removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V518org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator311124removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V522org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator317125removed call to com/github/yadickson/Clazz::checkDateUtil +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V523org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator322126removed call to com/github/yadickson/Clazz::checkBlodUtil +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V524org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator327127removed call to com/github/yadickson/Clazz::checkClodUtil +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V525org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator333129removed call to com/github/yadickson/Clazz::makeInterfaces +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V531org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator367139removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V533org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator388147removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V534org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator415159removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V535org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator442171removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V538org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator475185removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V543org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator510196removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V544org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator534206removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V547org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator564218removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V551org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator570219removed call to com/github/yadickson/Clazz::checkDateUtil +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V552org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator575220removed call to com/github/yadickson/Clazz::checkBlodUtil +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V553org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator580221removed call to com/github/yadickson/Clazz::checkClodUtil +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V554org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator586223removed call to com/github/yadickson/Clazz::makeInterfaces +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V260org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator157removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V275org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator9219removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V277org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator9720removed call to com/github/yadickson/Clazz::processStoredProcedureParameterRS +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V278org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator10221removed call to com/github/yadickson/Clazz::processStoredProcedureMapperRS +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V279org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator10722removed call to com/github/yadickson/Clazz::processStoredProcedureParameter +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V280org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator11223removed call to com/github/yadickson/Clazz::processStoredProcedure +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V281org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator11724removed call to com/github/yadickson/Clazz::processStoredProcedureService +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V289org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator122negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V289org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator153negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V291org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator254negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V297org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator9632negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V302org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator12644negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V302org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator12945negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V304org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator13946negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V309org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator18664negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V314org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator21676negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V314org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator21977negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V316org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator22978negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V321org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator27696negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V326org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator306108negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V326org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator309110negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V326org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator314111negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V328org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator324112negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V334org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator395140negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V339org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator425152negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V339org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator428154negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V339org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator433155negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V341org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator443156negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V347org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator514184negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V352org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator544196negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V352org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator547198negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V352org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator552199negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V354org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator562200negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V362org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator633228negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V364org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator638229negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V370org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator713257negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V376org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator744268negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V382org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator819296negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V465org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator122negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V465org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator154negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V472org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator4514negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V472org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator4816negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V477org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator6618negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V483org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator13944negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V409org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator122negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V409org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator154negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V415org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator308negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V416org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator359negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V424org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator11235negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V425org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator11736negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::makeInterfaces +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V440org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator122negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V440org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator154negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V445org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator3913negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V445org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator4215negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V450org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator5517negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::makeInterfaces +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V394org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator182negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)V400org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator7722negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V604org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator51negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V608org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator143negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V613org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator4210removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V614org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator5916removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V615org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator7622removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V616org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator9328removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V617org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator11034removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V624org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator15048removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V628org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator17555removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V629org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator19361removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V635org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator23474removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V636org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator25380removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/regex/Pattern;Ljava/lang/String;Ljava/lang/String;)V212org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator23279negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/regex/Pattern;Ljava/lang/String;Ljava/lang/String;)V212org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator23480negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/regex/Pattern;Ljava/lang/String;Ljava/lang/String;)V216org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator25083negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/regex/Pattern;Ljava/lang/String;Ljava/lang/String;)V216org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator25385negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/regex/Pattern;Ljava/lang/String;Ljava/lang/String;)V216org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator25586negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/regex/Pattern;Ljava/lang/String;Ljava/lang/String;)V220org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator27189negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/regex/Pattern;Ljava/lang/String;Ljava/lang/String;)V220org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator27491negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Lcom/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Lcom/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Lcom/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Lcom/github/yadickson/Clazz::setParameters +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Lcom/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Lcom/github/yadickson/Clazz::findDataSetParameter +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Lcom/github/yadickson/Clazz::sort +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)V245org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator325changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)V256org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator9725changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)V247org.pitest.mutationtest.engine.gregor.mutators.MathMutator469Replaced integer addition with subtraction +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)V249org.pitest.mutationtest.engine.gregor.mutators.MathMutator5611Replaced integer addition with subtraction +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)V262org.pitest.mutationtest.engine.gregor.mutators.MathMutator13339Replaced integer addition with subtraction +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)V245org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator325negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)V246org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator408negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)V256org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator9725negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)V258org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator10528negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)V258org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator11131negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)V262org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator12536negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)V267org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator15746negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)V278org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator2341905362negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::setObject +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::registerOutParameter +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::setParameters +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::close +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::error +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;Ljava/lang/String;)Ljava/util/List;519org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator152negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;Ljava/lang/String;)Ljava/util/List;523org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator255removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;Ljava/lang/String;)Ljava/util/List;529org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator8928removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;Ljava/lang/String;)Ljava/util/List;533org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator11438removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;Ljava/lang/String;)Ljava/util/List;520org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator193replaced return value with Collections.emptyList for com/github/yadickson/Clazz::findObjects +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;Ljava/lang/String;)Ljava/util/List;535org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator11839replaced return value with Collections.emptyList for com/github/yadickson/Clazz::findObjects +file.javacom.github.yadickson.clazzmethod(Ljava/lang/Boolean;Ljava/lang/String;Ljava/lang/String;Ljava/sql/Connection;)Ljava/util/List;148org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator4213negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/Boolean;Ljava/lang/String;Ljava/lang/String;Ljava/sql/Connection;)Ljava/util/List;141org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator51removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/lang/Boolean;Ljava/lang/String;Ljava/lang/String;Ljava/sql/Connection;)Ljava/util/List;149org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator9133removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/lang/Boolean;Ljava/lang/String;Ljava/lang/String;Ljava/sql/Connection;)Ljava/util/List;153org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator11643removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/lang/Boolean;Ljava/lang/String;Ljava/lang/String;Ljava/sql/Connection;)Ljava/util/List;155org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator12044replaced return value with Collections.emptyList for com/github/yadickson/Clazz::findProcedures +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)Z304org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator294changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)Z326org.pitest.mutationtest.engine.gregor.mutators.IncrementsMutator13632Changed increment from 1 to -1 +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)Z331org.pitest.mutationtest.engine.gregor.mutators.IncrementsMutator17337Changed increment from 1 to -1 +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)Z306org.pitest.mutationtest.engine.gregor.mutators.MathMutator438Replaced integer addition with subtraction +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)Z308org.pitest.mutationtest.engine.gregor.mutators.MathMutator5310Replaced integer addition with subtraction +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)Z304org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator294negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)Z305org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator377negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)Z315org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator8822negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)Z325org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator11425negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)Z333org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator17838negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)Z343org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator227259187394956negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::setObject +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::registerOutParameter +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::setParameters +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::setParameters +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::error +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::close +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::findReturnResultSet +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::findReturnResultSet +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::findReturnResultSet +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)Z371org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator274changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)Z372org.pitest.mutationtest.engine.gregor.mutators.MathMutator335Replaced integer addition with subtraction +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)Z371org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator274negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)Z378org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator5410negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Ljava/sql/Connection;Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;)Z393org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator1311712036211233340negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::setObject +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::close +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::setParameters +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::setParameters +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::error +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::findReturnResultTable +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::findReturnResultTable +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::findReturnResultTable +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::findReturnResultTable +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::findReturnResultTable +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;555org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator152negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;568org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator6516negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;559org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator255removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;569org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator7923removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;592org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator17448removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;593org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator18755removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;594org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator20062removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;595org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator21369removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;596org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator22676removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;597org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator23983removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;598org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator25290removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;599org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator26597removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;600org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator278104removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;603org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator297113removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;556org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator193replaced return value with Collections.emptyList for com/github/yadickson/Clazz::findTables +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;605org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator301114replaced return value with Collections.emptyList for com/github/yadickson/Clazz::findTables +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;78org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getName +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Lcom/github/yadickson/db/common/Procedure;Ljava/sql/Connection;Ljava/sql/ResultSet;Ljava/lang/String;Ljava/lang/String;)Ljava/util/List;469org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator275changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Lcom/github/yadickson/db/common/Procedure;Ljava/sql/Connection;Ljava/sql/ResultSet;Ljava/lang/String;Ljava/lang/String;)Ljava/util/List;471org.pitest.mutationtest.engine.gregor.mutators.MathMutator336Replaced integer addition with subtraction +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Lcom/github/yadickson/db/common/Procedure;Ljava/sql/Connection;Ljava/sql/ResultSet;Ljava/lang/String;Ljava/lang/String;)Ljava/util/List;472org.pitest.mutationtest.engine.gregor.mutators.MathMutator417Replaced integer addition with subtraction +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Lcom/github/yadickson/db/common/Procedure;Ljava/sql/Connection;Ljava/sql/ResultSet;Ljava/lang/String;Ljava/lang/String;)Ljava/util/List;477org.pitest.mutationtest.engine.gregor.mutators.MathMutator8524Replaced integer addition with subtraction +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Lcom/github/yadickson/db/common/Procedure;Ljava/sql/Connection;Ljava/sql/ResultSet;Ljava/lang/String;Ljava/lang/String;)Ljava/util/List;480org.pitest.mutationtest.engine.gregor.mutators.MathMutator10330Replaced integer addition with subtraction +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Lcom/github/yadickson/db/common/Procedure;Ljava/sql/Connection;Ljava/sql/ResultSet;Ljava/lang/String;Ljava/lang/String;)Ljava/util/List;469org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator275negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Lcom/github/yadickson/db/common/Procedure;Ljava/sql/Connection;Ljava/sql/ResultSet;Ljava/lang/String;Ljava/lang/String;)Ljava/util/List;476org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator6517negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Lcom/github/yadickson/db/common/Procedure;Ljava/sql/Connection;Ljava/sql/ResultSet;Ljava/lang/String;Ljava/lang/String;)Ljava/util/List;476org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator6819negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/MakeParameter;Lcom/github/yadickson/db/common/Procedure;Ljava/sql/Connection;Ljava/sql/ResultSet;Ljava/lang/String;Ljava/lang/String;)Ljava/util/List;482org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator12033negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::close +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::sort +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::getParameters +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;)Ljava/lang/String;442org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator11636changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;)Ljava/lang/String;439org.pitest.mutationtest.engine.gregor.mutators.MathMutator9332Replaced integer subtraction with addition +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;)Ljava/lang/String;430org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator193negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;)Ljava/lang/String;432org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator4211negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;)Ljava/lang/String;432org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator4412negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;)Ljava/lang/String;432org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator4613negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;)Ljava/lang/String;439org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator8528negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;)Ljava/lang/String;439org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator8729negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;)Ljava/lang/String;439org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator8930negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;)Ljava/lang/String;442org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator11636negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;Ljava/util/List;)Ljava/lang/String;448org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator16050negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::getProcedureSql +file.javacom.github.yadickson.clazzmethod()[Ljava/lang/String;411org.pitest.mutationtest.engine.gregor.mutators.returns.NullReturnValsMutator130replaced return value with null for com/github/yadickson/Clazz::getSqlKeys +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;420org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40replaced return value with "" for com/github/yadickson/Clazz::getSqlSelect +file.javacom.github.yadickson.clazzmethod()Lorg/w3c/dom/Document;92org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator36107723negated conditional +file.javacom.github.yadickson.clazzmethod()Lorg/w3c/dom/Document;69org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator61removed call to org/apache/maven/plugin/logging/Log::debug +file.javacom.github.yadickson.clazzmethod()Lorg/w3c/dom/Document;96org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator40111824removed call to java/io/InputStream::close +file.javacom.github.yadickson.clazzmethod()Lorg/w3c/dom/Document;76org.pitest.mutationtest.engine.gregor.mutators.returns.NullReturnValsMutator6113replaced return value with null for com/github/yadickson/Clazz::build +file.javacom.github.yadickson.clazzmethod()V112org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator50changed conditional boundary +file.javacom.github.yadickson.clazzmethod()V117org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator224changed conditional boundary +file.javacom.github.yadickson.clazzmethod()V157org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator18546changed conditional boundary +file.javacom.github.yadickson.clazzmethod()V159org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator20252changed conditional boundary +file.javacom.github.yadickson.clazzmethod()V112org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator50negated conditional +file.javacom.github.yadickson.clazzmethod()V117org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator224negated conditional +file.javacom.github.yadickson.clazzmethod()V132org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator9423negated conditional +file.javacom.github.yadickson.clazzmethod()V132org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator9825negated conditional +file.javacom.github.yadickson.clazzmethod()V138org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator12134negated conditional +file.javacom.github.yadickson.clazzmethod()V157org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator18144negated conditional +file.javacom.github.yadickson.clazzmethod()V157org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator18546negated conditional +file.javacom.github.yadickson.clazzmethod()V159org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator20252negated conditional +file.javacom.github.yadickson.clazzmethod()V168org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator25368negated conditional +file.javacom.github.yadickson.clazzmethod()V114org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator112removed call to org/apache/maven/plugin/logging/Log::warn +file.javacom.github.yadickson.clazzmethod()V119org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator286removed call to org/apache/maven/plugin/logging/Log::warn +file.javacom.github.yadickson.clazzmethod()V134org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator11431removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod()V140org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator12835removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod()V144org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator13737removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod()V147org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator14839removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod()V148org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator15540removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod()V159org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator21357removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod()V160org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator22058removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod()V165org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator24364removed call to com/github/yadickson/Clazz::writeGoal +file.javacom.github.yadickson.clazzmethod()V170org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator26071removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod(Lorg/w3c/dom/Node;Ljava/lang/String;)Ljava/util/List;205org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator214changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Lorg/w3c/dom/Node;Ljava/lang/String;)Ljava/util/List;205org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator214negated conditional +file.javacom.github.yadickson.clazzmethod(Lorg/w3c/dom/Node;Ljava/lang/String;)Ljava/util/List;208org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator348negated conditional +file.javacom.github.yadickson.clazzmethod(Lorg/w3c/dom/Node;Ljava/lang/String;)Ljava/util/List;213org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator5012replaced return value with Collections.emptyList for com/github/yadickson/Clazz::findNamedChild +file.javacom.github.yadickson.clazzmethod(Lorg/w3c/dom/Node;Ljava/lang/String;)Lorg/w3c/dom/Node;224org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator235changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Lorg/w3c/dom/Node;Ljava/lang/String;)Lorg/w3c/dom/Node;220org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator122negated conditional +file.javacom.github.yadickson.clazzmethod(Lorg/w3c/dom/Node;Ljava/lang/String;)Lorg/w3c/dom/Node;224org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator235negated conditional +file.javacom.github.yadickson.clazzmethod(Lorg/w3c/dom/Node;Ljava/lang/String;)Lorg/w3c/dom/Node;228org.pitest.mutationtest.engine.gregor.mutators.returns.NullReturnValsMutator4714replaced return value with null for com/github/yadickson/Clazz::findSingleChild +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)I432org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator142changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)I436org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator407changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)I436org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator449changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)I434org.pitest.mutationtest.engine.gregor.mutators.IncrementsMutator225Changed increment from 1 to -1 +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)I440org.pitest.mutationtest.engine.gregor.mutators.IncrementsMutator5412Changed increment from 1 to -1 +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)I436org.pitest.mutationtest.engine.gregor.mutators.MathMutator326Replaced integer addition with subtraction +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)I436org.pitest.mutationtest.engine.gregor.mutators.MathMutator397Replaced integer addition with subtraction +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)I432org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator142negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)I432org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator194negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)I436org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator407negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)I436org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator449negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)I438org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator5111negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)I444org.pitest.mutationtest.engine.gregor.mutators.returns.PrimitiveReturnsMutator6714replaced int return with 0 for com/github/yadickson/Clazz::getIndentLevel +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;453org.pitest.mutationtest.engine.gregor.mutators.MathMutator289Replaced integer subtraction with addition +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;449org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator40negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;449org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator82negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;449org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator124negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;450org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator207negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;453org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator3010replaced return value with "" for com/github/yadickson/Clazz::getPropertyFromExpression +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;456org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator3511replaced return value with "" for com/github/yadickson/Clazz::getPropertyFromExpression +file.javacom.github.yadickson.clazzmethod(Lorg/w3c/dom/Node;Ljava/lang/String;)Lorg/w3c/dom/Node;194org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator3511changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Lorg/w3c/dom/Node;Ljava/lang/String;)Lorg/w3c/dom/Node;190org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator122negated conditional +file.javacom.github.yadickson.clazzmethod(Lorg/w3c/dom/Node;Ljava/lang/String;)Lorg/w3c/dom/Node;194org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator3511negated conditional +file.javacom.github.yadickson.clazzmethod(Lorg/w3c/dom/Node;Ljava/lang/String;)Lorg/w3c/dom/Node;198org.pitest.mutationtest.engine.gregor.mutators.returns.NullReturnValsMutator5920replaced return value with null for com/github/yadickson/Clazz::getSingleChild +file.javacom.github.yadickson.clazzmethod(Lorg/w3c/dom/Node;Ljava/lang/String;)Ljava/lang/String;183org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator82replaced return value with "" for com/github/yadickson/Clazz::getValue +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Z177org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator72changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Z177org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator40negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Z177org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator72negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Z177org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator155replaced boolean return with true for com/github/yadickson/Clazz::isNotEmpty +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;I)Ljava/lang/String;322org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator193changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;I)Ljava/lang/String;320org.pitest.mutationtest.engine.gregor.mutators.MathMutator81Replaced integer multiplication with division +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;I)Ljava/lang/String;322org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator193negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;I)Ljava/lang/String;327org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator357replaced return value with "" for com/github/yadickson/Clazz::repeat +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;III)Ljava/util/List;366org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator509removed call to com/github/yadickson/Clazz::toLines +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;III)Ljava/util/List;369org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator5911replaced return value with Collections.emptyList for com/github/yadickson/Clazz::toLines +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;Ljava/lang/String;II)V389org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator416changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;Ljava/lang/String;II)V391org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator509changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;Ljava/lang/String;II)V403org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator9120changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;Ljava/lang/String;II)V391org.pitest.mutationtest.engine.gregor.mutators.MathMutator489Replaced integer addition with subtraction +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;Ljava/lang/String;II)V395org.pitest.mutationtest.engine.gregor.mutators.MathMutator6913Replaced integer multiplication with division +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;Ljava/lang/String;II)V408org.pitest.mutationtest.engine.gregor.mutators.MathMutator11124Replaced integer modulus with multiplication +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;Ljava/lang/String;II)V408org.pitest.mutationtest.engine.gregor.mutators.MathMutator11224Replaced integer subtraction with addition +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;Ljava/lang/String;II)V389org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator416negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;Ljava/lang/String;II)V391org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator509negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;Ljava/lang/String;II)V403org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator9120negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;Ljava/lang/String;II)V406org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator10222negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;Ljava/lang/String;II)V410org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator12227negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;Ljava/lang/String;II)V394org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator6212removed call to java/lang/StringBuilder::setLength +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V237org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator305changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V237org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator263negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V237org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator305negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V237org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator357negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V241org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator6315negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V241org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator6718negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V244org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator8725negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V244org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator8926negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V250org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator11031negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V256org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator13135negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V239org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator5213removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V243org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator8224removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V246org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator9627removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V247org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator10429removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V252org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator11833removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V254org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator12634removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V260org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator15238removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V261org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator15939removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Ljava/lang/String;Lorg/w3c/dom/Element;)V265org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator18045removed call to com/github/yadickson/Clazz::writeParameter +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)V278org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator222negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)V284org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator395negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)V284org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator437negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)V290org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator8421negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)V290org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator8824negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)V296org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator12735negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)V300org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator13937negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)V300org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator14340negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)V288org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator7319removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)V292org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator10330removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)V293org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator11031removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)V295org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator11832removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)V298org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator13436removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)V303org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator16447removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod(Ljava/lang/StringBuilder;Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)V306org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator17248removed call to com/github/yadickson/Clazz::append +file.javacom.github.yadickson.clazzmethod()V746org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator967363changed conditional boundary +file.javacom.github.yadickson.clazzmethod()V696org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator673288negated conditional +file.javacom.github.yadickson.clazzmethod()V696org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator677290negated conditional +file.javacom.github.yadickson.clazzmethod()V700org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator702299negated conditional +file.javacom.github.yadickson.clazzmethod()V700org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator706301negated conditional +file.javacom.github.yadickson.clazzmethod()V700org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator710303negated conditional +file.javacom.github.yadickson.clazzmethod()V704org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator734312negated conditional +file.javacom.github.yadickson.clazzmethod()V704org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator738314negated conditional +file.javacom.github.yadickson.clazzmethod()V726org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator834333negated conditional +file.javacom.github.yadickson.clazzmethod()V728org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator857336negated conditional +file.javacom.github.yadickson.clazzmethod()V734org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator885346negated conditional +file.javacom.github.yadickson.clazzmethod()V736org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator908349negated conditional +file.javacom.github.yadickson.clazzmethod()V742org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator936359negated conditional +file.javacom.github.yadickson.clazzmethod()V746org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator967363negated conditional +file.javacom.github.yadickson.clazzmethod()V754org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator993368negated conditional +file.javacom.github.yadickson.clazzmethod()V756org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator1016371negated conditional +file.javacom.github.yadickson.clazzmethod()V762org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator1044381negated conditional +file.javacom.github.yadickson.clazzmethod()V764org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator1067384negated conditional +file.javacom.github.yadickson.clazzmethod()V770org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator1095395negated conditional +file.javacom.github.yadickson.clazzmethod()V774org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator1107399negated conditional +file.javacom.github.yadickson.clazzmethod()V778org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator1119403negated conditional +file.javacom.github.yadickson.clazzmethod()V782org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator1131407negated conditional +file.javacom.github.yadickson.clazzmethod()V820org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator1314463negated conditional +file.javacom.github.yadickson.clazzmethod()V820org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator1319466negated conditional +file.javacom.github.yadickson.clazzmethod()V822org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator1331469negated conditional +file.javacom.github.yadickson.clazzmethod()V874org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator1531513negated conditional +file.javacom.github.yadickson.clazzmethod()V884org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator1569523negated conditional +file.javacom.github.yadickson.clazzmethod()V647org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator145removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V648org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator2811removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V649org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator4217removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V650org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator5623removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V651org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator6225removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V652org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator7631removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V653org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator9037removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V654org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator10544removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V655org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator12051removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V656org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator13558removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V657org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator14964removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V658org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator16370removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V659org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator17776removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V660org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator19182removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V661org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator20588removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V662org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator21994removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V663org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator233100removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V664org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator247106removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V665org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator261112removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V666org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator275118removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V667org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator289124removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V668org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator303130removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V669org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator317136removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V670org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator331142removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V671org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator345148removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V672org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator359154removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V673org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator373160removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V674org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator387166removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V675org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator401172removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V676org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator415178removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V677org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator429184removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V678org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator443190removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V679org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator457196removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V680org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator471202removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V681org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator485208removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V682org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator499214removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V683org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator513220removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V684org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator527226removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V685org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator541232removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V686org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator555238removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V687org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator569244removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V688org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator583250removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V689org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator597256removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V690org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator611262removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V691org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator625268removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V692org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator639274removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V693org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator653280removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V694org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator667286removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod()V708org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator764323removed call to org/apache/maven/project/MavenProject::addCompileSourceRoot +file.javacom.github.yadickson.clazzmethod()V711org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator777326removed call to org/apache/maven/model/Resource::setDirectory +file.javacom.github.yadickson.clazzmethod()V712org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator783327removed call to org/apache/maven/project/MavenProject::addResource +file.javacom.github.yadickson.clazzmethod()V786org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1144412removed call to com/github/yadickson/Clazz::configure +file.javacom.github.yadickson.clazzmethod()V788org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1156418removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod()V789org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1168424removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod()V790org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1180430removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod()V791org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1192436removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod()V792org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1204442removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod()V823org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1344476removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod()V824org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1355477removed call to com/github/yadickson/Clazz::fillProcedure +file.javacom.github.yadickson.clazzmethod()V826org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1366480removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod()V830org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1378483removed call to java/util/Collections::sort +file.javacom.github.yadickson.clazzmethod()V885org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1582530removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod()V891org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1598534removed call to com/github/yadickson/Clazz::processProcedures +file.javacom.github.yadickson.clazzmethod()V892org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1603535removed call to com/github/yadickson/Clazz::processObjects +file.javacom.github.yadickson.clazzmethod()V893org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1608536removed call to com/github/yadickson/Clazz::processTables +file.javacom.github.yadickson.clazzmethod()V910org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1652543removed call to com/github/yadickson/Clazz::process +file.javacom.github.yadickson.clazzmethod()V928org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1698550removed call to com/github/yadickson/Clazz::process +file.javacom.github.yadickson.clazzmethod()V944org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1733555removed call to com/github/yadickson/Clazz::process +file.javacom.github.yadickson.clazzmethod()V953org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator17371785556568removed call to com/github/yadickson/Clazz::closeConnection +file.javacom.github.yadickson.clazzmethod()V947org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1752560removed call to org/apache/maven/plugin/logging/Log::error +file.javacom.github.yadickson.clazzmethod()V950org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator1771565removed call to org/apache/maven/plugin/logging/Log::error +file.javacom.github.yadickson.clazzmethod([Ljava/lang/String;)V972org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator50negated conditional +file.javacom.github.yadickson.clazzmethod([Ljava/lang/String;)V963org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator50negated conditional +file.javacom.github.yadickson.clazzmethod([Ljava/lang/String;)V981org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator50negated conditional +file.javacom.github.yadickson.clazzmethod([Ljava/lang/String;)V990org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator50negated conditional +file.javacom.github.yadickson.clazzmethod([Ljava/lang/String;)V999org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator50negated conditional +file.javacom.github.yadickson.clazzmethod()Ljava/util/Collection;417org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator268negated conditional +file.javacom.github.yadickson.clazzmethod()Ljava/util/Collection;422org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator4414replaced return value with Collections.emptyList for com/github/yadickson/Clazz::getArrayImports +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;112org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator61com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testProcedureAddPackageName(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;112org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator207com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testProcedureAddPackageName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getClassName +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;347org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator82negated conditional +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;347org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator2914replaced return value with "" for com/github/yadickson/Clazz::getConstantFullName +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;343org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator82com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testProcedureWithoutPackageName(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;343org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator2914com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testProcedureWithoutPackageName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getFullName +file.javacom.github.yadickson.clazzmethod()Z172org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator206negated conditional +file.javacom.github.yadickson.clazzmethod()Z172org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator238negated conditional +file.javacom.github.yadickson.clazzmethod()Z173org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator289replaced boolean return with false for com/github/yadickson/Clazz::getHasArray +file.javacom.github.yadickson.clazzmethod()Z177org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator3711replaced boolean return with true for com/github/yadickson/Clazz::getHasArray +file.javacom.github.yadickson.clazzmethod()Z235org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator206negated conditional +file.javacom.github.yadickson.clazzmethod()Z235org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator238negated conditional +file.javacom.github.yadickson.clazzmethod()Z236org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator289replaced boolean return with false for com/github/yadickson/Clazz::getHasBlob +file.javacom.github.yadickson.clazzmethod()Z240org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator3711replaced boolean return with true for com/github/yadickson/Clazz::getHasBlob +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)Z252org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator196negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)Z253org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator237replaced boolean return with false for com/github/yadickson/Clazz::getHasBlob +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)Z257org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator329replaced boolean return with true for com/github/yadickson/Clazz::getHasBlob +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)Z205org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator196negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)Z206org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator237replaced boolean return with false for com/github/yadickson/Clazz::getHasClob +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)Z210org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator329replaced boolean return with true for com/github/yadickson/Clazz::getHasClob +file.javacom.github.yadickson.clazzmethod()Z188org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator206negated conditional +file.javacom.github.yadickson.clazzmethod()Z188org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator238negated conditional +file.javacom.github.yadickson.clazzmethod()Z189org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator289replaced boolean return with false for com/github/yadickson/Clazz::getHasDate +file.javacom.github.yadickson.clazzmethod()Z193org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator3711replaced boolean return with true for com/github/yadickson/Clazz::getHasDate +file.javacom.github.yadickson.clazzmethod()Z121org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator61negated conditional +file.javacom.github.yadickson.clazzmethod()Z121org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator144replaced boolean return with true for com/github/yadickson/Clazz::getHasInput +file.javacom.github.yadickson.clazzmethod()Z267org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator71replaced boolean return with false for com/github/yadickson/Clazz::getHasInputBlob +file.javacom.github.yadickson.clazzmethod()Z267org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator71replaced boolean return with true for com/github/yadickson/Clazz::getHasInputBlob +file.javacom.github.yadickson.clazzmethod()Z220org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator71replaced boolean return with false for com/github/yadickson/Clazz::getHasInputClob +file.javacom.github.yadickson.clazzmethod()Z220org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator71replaced boolean return with true for com/github/yadickson/Clazz::getHasInputClob +file.javacom.github.yadickson.clazzmethod()Z156org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator207negated conditional +file.javacom.github.yadickson.clazzmethod()Z156org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator239negated conditional +file.javacom.github.yadickson.clazzmethod()Z157org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator2810replaced boolean return with false for com/github/yadickson/Clazz::getHasObject +file.javacom.github.yadickson.clazzmethod()Z162org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator3712replaced boolean return with true for com/github/yadickson/Clazz::getHasObject +file.javacom.github.yadickson.clazzmethod()Z130org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator61negated conditional +file.javacom.github.yadickson.clazzmethod()Z130org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator144replaced boolean return with true for com/github/yadickson/Clazz::getHasOutput +file.javacom.github.yadickson.clazzmethod()Z277org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator71replaced boolean return with false for com/github/yadickson/Clazz::getHasOutputBlob +file.javacom.github.yadickson.clazzmethod()Z277org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator71replaced boolean return with true for com/github/yadickson/Clazz::getHasOutputBlob +file.javacom.github.yadickson.clazzmethod()Z230org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator71replaced boolean return with false for com/github/yadickson/Clazz::getHasOutputClob +file.javacom.github.yadickson.clazzmethod()Z230org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator71replaced boolean return with true for com/github/yadickson/Clazz::getHasOutputClob +file.javacom.github.yadickson.clazzmethod()Z103org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator50com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testProcedureWithoutPackageName(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod()Z103org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator133com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testProcedureWithoutPackageName(com.github.yadickson.ClazzTest)]replaced boolean return with true for com/github/yadickson/Clazz::getHasPackage +file.javacom.github.yadickson.clazzmethod()Z140org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator207negated conditional +file.javacom.github.yadickson.clazzmethod()Z141org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator248replaced boolean return with false for com/github/yadickson/Clazz::getHasResultSet +file.javacom.github.yadickson.clazzmethod()Z145org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator3310replaced boolean return with true for com/github/yadickson/Clazz::getHasResultSet +file.javacom.github.yadickson.clazzmethod()I387org.pitest.mutationtest.engine.gregor.mutators.returns.PrimitiveReturnsMutator61replaced int return with 0 for com/github/yadickson/Clazz::getInputParameterSize +file.javacom.github.yadickson.clazzmethod()Ljava/util/List;356org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with Collections.emptyList for com/github/yadickson/Clazz::getInputParameters +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;316org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testProcedureWithoutPackageName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getName +file.javacom.github.yadickson.clazzmethod()Ljava/util/Collection;435org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator268negated conditional +file.javacom.github.yadickson.clazzmethod()Ljava/util/Collection;440org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator4414replaced return value with Collections.emptyList for com/github/yadickson/Clazz::getObjectImports +file.javacom.github.yadickson.clazzmethod()I391org.pitest.mutationtest.engine.gregor.mutators.returns.PrimitiveReturnsMutator61replaced int return with 0 for com/github/yadickson/Clazz::getOutputParameterSize +file.javacom.github.yadickson.clazzmethod()Ljava/util/List;365org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with Collections.emptyList for com/github/yadickson/Clazz::getOutputParameters +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;325org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testProcedureWithoutPackageName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getPackageName +file.javacom.github.yadickson.clazzmethod()Ljava/util/List;334org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with Collections.emptyList for com/github/yadickson/Clazz::getParameters +file.javacom.github.yadickson.clazzmethod()Z287org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator207negated conditional +file.javacom.github.yadickson.clazzmethod()Z288org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator248replaced boolean return with false for com/github/yadickson/Clazz::getReturnResultSet +file.javacom.github.yadickson.clazzmethod()Z292org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator3310replaced boolean return with true for com/github/yadickson/Clazz::getReturnResultSet +file.javacom.github.yadickson.clazzmethod()Z302org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator207negated conditional +file.javacom.github.yadickson.clazzmethod()Z302org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator239negated conditional +file.javacom.github.yadickson.clazzmethod()Z303org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator2710replaced boolean return with false for com/github/yadickson/Clazz::getReturnVoid +file.javacom.github.yadickson.clazzmethod()Z307org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator3612replaced boolean return with true for com/github/yadickson/Clazz::getReturnVoid +file.javacom.github.yadickson.clazzmethod()Z400org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator339changed conditional boundary +file.javacom.github.yadickson.clazzmethod()Z401org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator5819changed conditional boundary +file.javacom.github.yadickson.clazzmethod()Z400org.pitest.mutationtest.engine.gregor.mutators.MathMutator4715Replaced bitwise OR with AND +file.javacom.github.yadickson.clazzmethod()Z401org.pitest.mutationtest.engine.gregor.mutators.MathMutator7225Replaced bitwise OR with AND +file.javacom.github.yadickson.clazzmethod()Z400org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator296negated conditional +file.javacom.github.yadickson.clazzmethod()Z400org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator339negated conditional +file.javacom.github.yadickson.clazzmethod()Z400org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator3912negated conditional +file.javacom.github.yadickson.clazzmethod()Z401org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator5416negated conditional +file.javacom.github.yadickson.clazzmethod()Z401org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator5819negated conditional +file.javacom.github.yadickson.clazzmethod()Z401org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator6422negated conditional +file.javacom.github.yadickson.clazzmethod()Z404org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator8126negated conditional +file.javacom.github.yadickson.clazzmethod()Z404org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator8327negated conditional +file.javacom.github.yadickson.clazzmethod()Z404org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator9130replaced boolean return with true for com/github/yadickson/Clazz::isCheckResult +file.javacom.github.yadickson.clazzmethod()Z374org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testProcedureWithoutPackageName(com.github.yadickson.ClazzTest)]replaced boolean return with true for com/github/yadickson/Clazz::isFunction +file.javacom.github.yadickson.clazzmethod()Z383org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator40replaced boolean return with true for com/github/yadickson/Clazz::isFunctionInline +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V88org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator348negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V91org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator4712negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V84org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator100removed call to java/util/List::clear +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V85org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator151removed call to java/util/List::clear +file.javacom.github.yadickson.clazzmethod(Ljava/lang/Integer;Ljava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)V67org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator291negated conditional +file.javacom.github.yadickson.clazzmethod()Lcom/github/yadickson/Clazz::getDirection +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;88org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator62com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testRefCursorWithoutPackageName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getFieldName +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;387org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator136replaced return value with "" for com/github/yadickson/Clazz::getJavaFileNameInterface +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;143org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator62replaced return value with "" for com/github/yadickson/Clazz::getJavaTypeFieldName +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;97org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testChar(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getName +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;358org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40replaced return value with "" for com/github/yadickson/Clazz::getObjectName +file.javacom.github.yadickson.clazzmethod()Ljava/util/List;106org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with Collections.emptyList for com/github/yadickson/Clazz::getParameters +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;152org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getParent +file.javacom.github.yadickson.clazzmethod()Ljava/lang/Integer;125org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testChar(com.github.yadickson.ClazzTest)]replaced Integer return value with 0 for com/github/yadickson/Clazz::getPosition +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;367org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getPrefix +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;134org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator62replaced return value with "" for com/github/yadickson/Clazz::getPropertyName +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;408org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getSqlNativeDirection +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;415org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getSqlNativeTypeName +file.javacom.github.yadickson.clazzmethod()Z344org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator207negated conditional +file.javacom.github.yadickson.clazzmethod()Z344org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator239negated conditional +file.javacom.github.yadickson.clazzmethod()Z345org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator2810replaced boolean return with false for com/github/yadickson/Clazz::hasArray +file.javacom.github.yadickson.clazzmethod()Z349org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator3712replaced boolean return with true for com/github/yadickson/Clazz::hasArray +file.javacom.github.yadickson.clazzmethod()Z276org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator207negated conditional +file.javacom.github.yadickson.clazzmethod()Z276org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator239negated conditional +file.javacom.github.yadickson.clazzmethod()Z277org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator2810replaced boolean return with false for com/github/yadickson/Clazz::hasBlob +file.javacom.github.yadickson.clazzmethod()Z281org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator3712replaced boolean return with true for com/github/yadickson/Clazz::hasBlob +file.javacom.github.yadickson.clazzmethod()Z251org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator207negated conditional +file.javacom.github.yadickson.clazzmethod()Z251org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator239negated conditional +file.javacom.github.yadickson.clazzmethod()Z252org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator2810replaced boolean return with false for com/github/yadickson/Clazz::hasClob +file.javacom.github.yadickson.clazzmethod()Z256org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator3712replaced boolean return with true for com/github/yadickson/Clazz::hasClob +file.javacom.github.yadickson.clazzmethod()Z226org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator207negated conditional +file.javacom.github.yadickson.clazzmethod()Z226org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator239negated conditional +file.javacom.github.yadickson.clazzmethod()Z227org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator2810replaced boolean return with false for com/github/yadickson/Clazz::hasDate +file.javacom.github.yadickson.clazzmethod()Z231org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator3712replaced boolean return with true for com/github/yadickson/Clazz::hasDate +file.javacom.github.yadickson.clazzmethod()Z319org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator207negated conditional +file.javacom.github.yadickson.clazzmethod()Z319org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator239negated conditional +file.javacom.github.yadickson.clazzmethod()Z320org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator2810replaced boolean return with false for com/github/yadickson/Clazz::hasObject +file.javacom.github.yadickson.clazzmethod()Z324org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator3712replaced boolean return with true for com/github/yadickson/Clazz::hasObject +file.javacom.github.yadickson.clazzmethod()Z333org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:tesArrayFalse(com.github.yadickson.ClazzTest)]replaced boolean return with true for com/github/yadickson/Clazz::isArray +file.javacom.github.yadickson.clazzmethod()Z265org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator40replaced boolean return with true for com/github/yadickson/Clazz::isBlob +file.javacom.github.yadickson.clazzmethod()Z206org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator40replaced boolean return with true for com/github/yadickson/Clazz::isBoolean +file.javacom.github.yadickson.clazzmethod()Z240org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator40replaced boolean return with true for com/github/yadickson/Clazz::isClob +file.javacom.github.yadickson.clazzmethod()Z215org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator40replaced boolean return with true for com/github/yadickson/Clazz::isDate +file.javacom.github.yadickson.clazzmethod()Z161org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator60negated conditional +file.javacom.github.yadickson.clazzmethod()Z161org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator101negated conditional +file.javacom.github.yadickson.clazzmethod()Z161org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator204replaced boolean return with true for com/github/yadickson/Clazz::isInput +file.javacom.github.yadickson.clazzmethod()Z179org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator60negated conditional +file.javacom.github.yadickson.clazzmethod()Z179org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator143replaced boolean return with true for com/github/yadickson/Clazz::isInputOutput +file.javacom.github.yadickson.clazzmethod()Ljava/lang/Boolean;419org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator51negated conditional +file.javacom.github.yadickson.clazzmethod()Ljava/lang/Boolean;419org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator83negated conditional +file.javacom.github.yadickson.clazzmethod()Ljava/lang/Boolean;419org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator115negated conditional +file.javacom.github.yadickson.clazzmethod()Ljava/lang/Boolean;419org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator147negated conditional +file.javacom.github.yadickson.clazzmethod()Ljava/lang/Boolean;419org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator2311replaced Boolean return with True for com/github/yadickson/Clazz::isInterface +file.javacom.github.yadickson.clazzmethod()Z188org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:tesNumberFalse(com.github.yadickson.ClazzTest)]replaced boolean return with true for com/github/yadickson/Clazz::isNumber +file.javacom.github.yadickson.clazzmethod()Z308org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testObjectFalse(com.github.yadickson.ClazzTest)]replaced boolean return with true for com/github/yadickson/Clazz::isObject +file.javacom.github.yadickson.clazzmethod()Z170org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator60negated conditional +file.javacom.github.yadickson.clazzmethod()Z170org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator101negated conditional +file.javacom.github.yadickson.clazzmethod()Z170org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator204replaced boolean return with true for com/github/yadickson/Clazz::isOutput +file.javacom.github.yadickson.clazzmethod()Z299org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testResultSetFalse(com.github.yadickson.ClazzTest)]replaced boolean return with true for com/github/yadickson/Clazz::isResultSet +file.javacom.github.yadickson.clazzmethod()Z376org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator40replaced boolean return with true for com/github/yadickson/Clazz::isReturnResultSet +file.javacom.github.yadickson.clazzmethod()Z197org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:tesStringFalse(com.github.yadickson.ClazzTest)]replaced boolean return with true for com/github/yadickson/Clazz::isString +file.javacom.github.yadickson.clazzmethod()Z290org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator40replaced boolean return with true for com/github/yadickson/Clazz::isVoid +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)V115org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator50removed call to java/util/List::clear +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;72org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator281com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testTableOutputError(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;75org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator905com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testTableOutputError(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;78org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator1209com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testTableOutputError(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;81org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator14613com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testTableOutputError(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;84org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator17617com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testTableOutputError(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;87org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator20621com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testTableOutputError(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;90org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator23225com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testTableOutputError(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;91org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator23726com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testRefCursorInputError(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;98org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator26932com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testUnknowType(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;99org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator27433com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testObjectOutputError(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;106org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator31139com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testUnknowType(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;107org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator31640com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testTableOutputError(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::getOwnerParameter +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::getOwnerParameter +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::getOwnerParameter +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::getOwnerParameter +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::getOwnerParameter +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::getOwnerParameter +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::getOwnerParameter +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::getOwnerParameter +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::getOwnerParameter +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;Ljava/lang/String;)V70org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator335removed call to freemarker/template/Configuration::setObjectWrapper +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;Ljava/lang/String;)V72org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator417removed call to freemarker/template/Configuration::setClassForTemplateLoading +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;Ljava/lang/String;)V73org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator478removed call to freemarker/template/Configuration::setDefaultEncoding +file.javacom.github.yadickson.clazzmethod(Ljava/util/Map;Ljava/lang/String;Ljava/lang/String;)V90org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator167removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod(Ljava/util/Map;Ljava/lang/String;Ljava/lang/String;)V97org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator5515removed call to freemarker/template/Template::process +file.javacom.github.yadickson.clazzmethod(Ljava/util/Map;Ljava/lang/String;Ljava/lang/String;)V98org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator5916removed call to java/io/Writer::flush +file.javacom.github.yadickson.clazzmethod(Ljava/util/Map;Ljava/lang/String;Ljava/lang/String;)V99org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator6317removed call to java/io/Writer::close +file.javacom.github.yadickson.clazzmethod()Lfreemarker/template/Configuration;189org.pitest.mutationtest.engine.gregor.mutators.returns.NullReturnValsMutator50replaced return value with null for com/github/yadickson/Clazz::getCfg +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;167org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator135replaced return value with "" for com/github/yadickson/Clazz::getFileNamePath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;182org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator135replaced return value with "" for com/github/yadickson/Clazz::getFileNameTestPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;139org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator81replaced return value with "" for com/github/yadickson/Clazz::getOutputPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;152org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator81replaced return value with "" for com/github/yadickson/Clazz::getOutputTestPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;122org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator278negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;122org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator3010negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;126org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator4917replaced return value with "" for com/github/yadickson/Clazz::getPath +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V76org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator594negated conditional +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;164org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getCharUsed +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;157org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getDefaultValue +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;85org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator62replaced return value with "" for com/github/yadickson/Clazz::getFieldName +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;143org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getMaxNumberValue +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;129org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getMaxSize +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;122org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getMinSize +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;101org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getName +file.javacom.github.yadickson.clazzmethod()Ljava/lang/Boolean;150org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator50replaced Boolean return with False for com/github/yadickson/Clazz::getNotNull +file.javacom.github.yadickson.clazzmethod()Ljava/lang/Boolean;150org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator50replaced Boolean return with True for com/github/yadickson/Clazz::getNotNull +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;115org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getPosition +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;94org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator62replaced return value with "" for com/github/yadickson/Clazz::getPropertyName +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;136org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getScale +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;108org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getType +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;71org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator321negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;74org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator945negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;77org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator1209negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;80org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator15413negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;83org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator20017negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;86org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator22621negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::getOwnerParameter +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::getOwnerParameter +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::getOwnerParameter +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::getOwnerParameter +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::getOwnerParameter +file.javacom.github.yadickson.clazzmethod(ILjava/lang/String;Lcom/github/yadickson/Clazz::getReturnResultSet +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;184org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getFieldcharused +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;170org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getFielddefaultvalue +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;142org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getFieldmaxnumbervalue +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;114org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getFieldmaxsize +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;100org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getFieldminsize +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;58org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getFieldname +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;156org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getFieldnotnull +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;86org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getFieldposition +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;128org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getFieldscale +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;72org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getFieldtype +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;44org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getName +file.javacom.github.yadickson.clazzmethod(ILjava/lang/String;Lcom/github/yadickson/Clazz::addParameters +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;146org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator135com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetJavaTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getJavaTypeName +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;136org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator61com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetJavaTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getObjectName +file.javacom.github.yadickson.clazzmethod()Ljava/util/List;87org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with Collections.emptyList for com/github/yadickson/Clazz::getParameters +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;126org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getRealObjectName +file.javacom.github.yadickson.clazzmethod()I97org.pitest.mutationtest.engine.gregor.mutators.returns.PrimitiveReturnsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetSqlType(com.github.yadickson.ClazzTest)]replaced int return with 0 for com/github/yadickson/Clazz::getSqlType +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;107org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetSqlTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getSqlTypeName +file.javacom.github.yadickson.clazzmethod()Z117org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:tesArrayTrue(com.github.yadickson.ClazzTest)]replaced boolean return with false for com/github/yadickson/Clazz::isArray +file.javacom.github.yadickson.clazzmethod()Lcom/github/yadickson/Clazz::getMakeParameter +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;68org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40replaced return value with "" for com/github/yadickson/Clazz::getObjetsQuery +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)[Ljava/lang/Object;127org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator51negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::getParameterObjects +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::getParameterObjects +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/db/common/Procedure;)Ljava/lang/String;57org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator51negated conditional +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::getParameterQuery +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;46org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40replaced return value with "" for com/github/yadickson/Clazz::getProcedureQuery +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;78org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40replaced return value with "" for com/github/yadickson/Clazz::getTablesQuery +file.javacom.github.yadickson.clazzmethod()V103org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator50removed call to org/apache/commons/dbutils/DbUtils::close +file.javacom.github.yadickson.clazzmethod()V105org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator173removed call to com/github/yadickson/Clazz::error +file.javacom.github.yadickson.clazzmethod()Ljava/sql/Connection;69org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator50negated conditional +file.javacom.github.yadickson.clazzmethod()Ljava/sql/Connection;85org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator6417removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod()Ljava/sql/Connection;86org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator7925removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod()Ljava/sql/Connection;70org.pitest.mutationtest.engine.gregor.mutators.returns.NullReturnValsMutator101replaced return value with null for com/github/yadickson/Clazz::getConnection +file.javacom.github.yadickson.clazzmethod()Ljava/sql/Connection;88org.pitest.mutationtest.engine.gregor.mutators.returns.NullReturnValsMutator8526replaced return value with null for com/github/yadickson/Clazz::getConnection +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;110org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getName +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;114org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getVersion +file.javacom.github.yadickson.clazzmethod(ILjava/lang/String;Lcom/github/yadickson/Clazz::addParameters +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;97org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator135com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetJavaTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getJavaTypeName +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;146org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator61com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetJavaTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getObjectName +file.javacom.github.yadickson.clazzmethod()Ljava/util/List;87org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with Collections.emptyList for com/github/yadickson/Clazz::getParameters +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;136org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getRealObjectName +file.javacom.github.yadickson.clazzmethod()I107org.pitest.mutationtest.engine.gregor.mutators.returns.PrimitiveReturnsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetSqlType(com.github.yadickson.ClazzTest)]replaced int return with 0 for com/github/yadickson/Clazz::getSqlType +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;117org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetSqlTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getSqlTypeName +file.javacom.github.yadickson.clazzmethod()Z127org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testObjectTrue(com.github.yadickson.ClazzTest)]replaced boolean return with false for com/github/yadickson/Clazz::isObject +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;69org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator161negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;72org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator545negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;75org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator809negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;78org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator10613negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::getOwnerParameter +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::getOwnerParameter +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::getOwnerParameter +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::getOwnerParameter +file.javacom.github.yadickson.clazzmethod(ILjava/lang/String;Lcom/github/yadickson/Clazz::getReturnResultSet +file.javacom.github.yadickson.clazzmethod()Lcom/github/yadickson/Clazz::getMakeParameter +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;82org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40replaced return value with "" for com/github/yadickson/Clazz::getObjetsQuery +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::getParameterObjects +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::getParameterQuery +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;46org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40replaced return value with "" for com/github/yadickson/Clazz::getProcedureQuery +file.javacom.github.yadickson.clazzmethod()[Ljava/lang/String;123org.pitest.mutationtest.engine.gregor.mutators.returns.NullReturnValsMutator130replaced return value with null for com/github/yadickson/Clazz::getSqlKeys +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;92org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40replaced return value with "" for com/github/yadickson/Clazz::getTablesQuery +file.javacom.github.yadickson.clazzmethod(Ljava/lang/Throwable;)V77org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator50negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/Throwable;)V78org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator111removed call to org/apache/maven/plugin/logging/Log::error +file.javacom.github.yadickson.clazzmethod()Lcom/github/yadickson/Clazz::getInstance +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)V55org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator50com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testConfigurationNull(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)V56org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator111removed call to org/apache/maven/plugin/logging/Log::info +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)V66org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator50negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)V67org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator111removed call to org/apache/maven/plugin/logging/Log::warn +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Lcom/github/yadickson/db/common/Direction;37org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testInputOutputDirection(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Lcom/github/yadickson/db/common/Direction;41org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator184com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testInputOutputDirection(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Lcom/github/yadickson/db/common/Direction;45org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator297com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testInputOutputDirection(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Lcom/github/yadickson/db/common/Direction;49org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator4010com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testInputOutputDirection(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Lcom/github/yadickson/Clazz::getDirection +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Lcom/github/yadickson/Clazz::getDirection +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Lcom/github/yadickson/Clazz::getDirection +file.javacom.github.yadickson.clazzmethod()Lcom/github/yadickson/Clazz::getMakeParameter +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;84org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40replaced return value with "" for com/github/yadickson/Clazz::getObjetsQuery +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::getParameterObjects +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::getParameterQuery +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;46org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40replaced return value with "" for com/github/yadickson/Clazz::getProcedureQuery +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;94org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40replaced return value with "" for com/github/yadickson/Clazz::getTablesQuery +file.javacom.github.yadickson.clazzmethod(Ljava/sql/ResultSet;)[Ljava/lang/Object;31org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator356changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Ljava/sql/ResultSet;)[Ljava/lang/Object;32org.pitest.mutationtest.engine.gregor.mutators.MathMutator437Replaced integer addition with subtraction +file.javacom.github.yadickson.clazzmethod(Ljava/sql/ResultSet;)[Ljava/lang/Object;23org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator51negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/sql/ResultSet;)[Ljava/lang/Object;31org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator356negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/sql/ResultSet;)[Ljava/lang/Object;24org.pitest.mutationtest.engine.gregor.mutators.returns.NullReturnValsMutator102replaced return value with null for com/github/yadickson/Clazz::handle +file.javacom.github.yadickson.clazzmethod(Ljava/sql/ResultSet;)[Ljava/lang/Object;35org.pitest.mutationtest.engine.gregor.mutators.returns.NullReturnValsMutator549replaced return value with null for com/github/yadickson/Clazz::handle +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Lcom/github/yadickson/db/Generator;46org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator93negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Lcom/github/yadickson/db/Generator;50org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator269negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Lcom/github/yadickson/db/Generator;54org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator4315negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Lcom/github/yadickson/Clazz::getGenarator +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Lcom/github/yadickson/Clazz::getGenarator +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Lcom/github/yadickson/Clazz::getGenarator +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/db/common/Direction;Ljava/lang/String;Ljava/sql/Connection;Ljava/lang/String;Lcom/github/yadickson/db/common/Procedure;Ljava/lang/String;Ljava/lang/String;)Lcom/github/yadickson/db/common/Parameter;62org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testChar(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;ILjava/lang/String;Lcom/github/yadickson/Clazz::create +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;[Ljava/lang/String;)Z132org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator283com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testTableOutputError(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;[Ljava/lang/String;)Z133org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator324com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testChar(com.github.yadickson.ClazzTest)]replaced boolean return with false for com/github/yadickson/Clazz::findParameterType +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;[Ljava/lang/String;)Z136org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator426replaced boolean return with false for com/github/yadickson/Clazz::findParameterType +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;[Ljava/lang/String;)Z136org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator426com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testTableOutputError(com.github.yadickson.ClazzTest)]replaced boolean return with true for com/github/yadickson/Clazz::findParameterType +file.javacom.github.yadickson.clazzmethod()I73org.pitest.mutationtest.engine.gregor.mutators.MathMutator61Replaced integer addition with subtraction +file.javacom.github.yadickson.clazzmethod()I73org.pitest.mutationtest.engine.gregor.mutators.returns.PrimitiveReturnsMutator71replaced int return with 0 for com/github/yadickson/Clazz::getOutputParameterSize +file.javacom.github.yadickson.clazzmethod()Z58org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testFunctionDisableAddPackageName(com.github.yadickson.ClazzTest)]replaced boolean return with false for com/github/yadickson/Clazz::isFunction +file.javacom.github.yadickson.clazzmethod()Z68org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator61replaced boolean return with false for com/github/yadickson/Clazz::isFunctionInline +file.javacom.github.yadickson.clazzmethod()Z68org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator61replaced boolean return with true for com/github/yadickson/Clazz::isFunctionInline +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;97org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator125replaced return value with "" for com/github/yadickson/Clazz::getJavaFileNameInterface +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;62org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetJavaTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getJavaTypeName +file.javacom.github.yadickson.clazzmethod()I72org.pitest.mutationtest.engine.gregor.mutators.returns.PrimitiveReturnsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetSqlType(com.github.yadickson.ClazzTest)]replaced int return with 0 for com/github/yadickson/Clazz::getSqlType +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;82org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetSqlTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getSqlTypeName +file.javacom.github.yadickson.clazzmethod()Z92org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator40replaced boolean return with false for com/github/yadickson/Clazz::isBlob +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;41org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getDirection +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;49org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getDtype +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;25org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getName +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;57org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getNtype +file.javacom.github.yadickson.clazzmethod()Ljava/lang/Integer;33org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced Integer return value with 0 for com/github/yadickson/Clazz::getPosition +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;62org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40replaced return value with "" for com/github/yadickson/Clazz::getJavaTypeName +file.javacom.github.yadickson.clazzmethod()I72org.pitest.mutationtest.engine.gregor.mutators.returns.PrimitiveReturnsMutator40replaced int return with 0 for com/github/yadickson/Clazz::getSqlType +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;82org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40replaced return value with "" for com/github/yadickson/Clazz::getSqlTypeName +file.javacom.github.yadickson.clazzmethod()Z92org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator40replaced boolean return with false for com/github/yadickson/Clazz::isBoolean +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)Lfreemarker/template/TemplateModel;22org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator234changed conditional boundary +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)Lfreemarker/template/TemplateModel;22org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator234negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)Lfreemarker/template/TemplateModel;29org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator5210removed call to java/util/Collections::sort +file.javacom.github.yadickson.clazzmethod(Ljava/util/List;)Lfreemarker/template/TemplateModel;31org.pitest.mutationtest.engine.gregor.mutators.returns.NullReturnValsMutator6213replaced return value with null for com/github/yadickson/Clazz::exec +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;61org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40replaced return value with "" for com/github/yadickson/Clazz::getJavaTypeName +file.javacom.github.yadickson.clazzmethod()I71org.pitest.mutationtest.engine.gregor.mutators.returns.PrimitiveReturnsMutator40replaced int return with 0 for com/github/yadickson/Clazz::getSqlType +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;81org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40replaced return value with "" for com/github/yadickson/Clazz::getSqlTypeName +file.javacom.github.yadickson.clazzmethod()Z91org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator40replaced boolean return with false for com/github/yadickson/Clazz::isVoid +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;62org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetJavaTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getJavaTypeName +file.javacom.github.yadickson.clazzmethod()I72org.pitest.mutationtest.engine.gregor.mutators.returns.PrimitiveReturnsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetSqlType(com.github.yadickson.ClazzTest)]replaced int return with 0 for com/github/yadickson/Clazz::getSqlType +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;82org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetSqlTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getSqlTypeName +file.javacom.github.yadickson.clazzmethod()Z92org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator40replaced boolean return with false for com/github/yadickson/Clazz::isClob +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;62org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetJavaTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getJavaTypeName +file.javacom.github.yadickson.clazzmethod()I72org.pitest.mutationtest.engine.gregor.mutators.returns.PrimitiveReturnsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetSqlType(com.github.yadickson.ClazzTest)]replaced int return with 0 for com/github/yadickson/Clazz::getSqlType +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;82org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetSqlTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getSqlTypeName +file.javacom.github.yadickson.clazzmethod()Z92org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:tesNumberTrue(com.github.yadickson.ClazzTest)]replaced boolean return with false for com/github/yadickson/Clazz::isNumber +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;72org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator167replaced return value with "" for com/github/yadickson/Clazz::getFieldName +file.javacom.github.yadickson.clazzmethod()Ljava/util/List;63org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with Collections.emptyList for com/github/yadickson/Clazz::getFields +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;56org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getName +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;81org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator167replaced return value with "" for com/github/yadickson/Clazz::getPropertyName +file.javacom.github.yadickson.clazzmethod()I76org.pitest.mutationtest.engine.gregor.mutators.returns.PrimitiveReturnsMutator40replaced int return with 0 for com/github/yadickson/Clazz::getSqlType +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;86org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40replaced return value with "" for com/github/yadickson/Clazz::getSqlTypeName +file.javacom.github.yadickson.clazzmethod()Z56org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanTrueReturnValsMutator40replaced boolean return with true for com/github/yadickson/Clazz::isResultSet +file.javacom.github.yadickson.clazzmethod()Z66org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator40replaced boolean return with false for com/github/yadickson/Clazz::isReturnResultSet +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;120org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator81replaced return value with "" for com/github/yadickson/Clazz::getDirectoryPackage +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;116org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator2310replaced return value with "" for com/github/yadickson/Clazz::getOutputPath +file.javacom.github.yadickson.clazzmethod()V103org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator51removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod()V104org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator4518removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;62org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetJavaTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getJavaTypeName +file.javacom.github.yadickson.clazzmethod()I72org.pitest.mutationtest.engine.gregor.mutators.returns.PrimitiveReturnsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetSqlType(com.github.yadickson.ClazzTest)]replaced int return with 0 for com/github/yadickson/Clazz::getSqlType +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;82org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetSqlTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getSqlTypeName +file.javacom.github.yadickson.clazzmethod()Z92org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator40replaced boolean return with false for com/github/yadickson/Clazz::isDate +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;62org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetJavaTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getJavaTypeName +file.javacom.github.yadickson.clazzmethod()I72org.pitest.mutationtest.engine.gregor.mutators.returns.PrimitiveReturnsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetSqlType(com.github.yadickson.ClazzTest)]replaced int return with 0 for com/github/yadickson/Clazz::getSqlType +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;82org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetSqlTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getSqlTypeName +file.javacom.github.yadickson.clazzmethod()Z92org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:tesStringTrue(com.github.yadickson.ClazzTest)]replaced boolean return with false for com/github/yadickson/Clazz::isString +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;[Ljava/lang/Object;)Ljava/util/List;29org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:tesArrayTrue(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;[Ljava/lang/Object;)Ljava/util/List;30org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator102replaced return value with Collections.emptyList for com/github/yadickson/Clazz::getParameters +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;[Ljava/lang/Object;)Ljava/util/List;44org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator589replaced return value with Collections.emptyList for com/github/yadickson/Clazz::getParameters +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;106org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator156replaced return value with "" for com/github/yadickson/Clazz::getOutputPath +file.javacom.github.yadickson.clazzmethod()V93org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator51removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod()V94org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator173removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;39org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testUncapitalize(com.github.yadickson.ClazzTest)]negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;41org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator396com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testUncapitalize(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::capitalize +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;51org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator62com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testUncapitalize(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::uncapitalize +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;31org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator101negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;32org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator142replaced return value with Collections.emptyList for com/github/yadickson/Clazz::getTables +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;44org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator579replaced return value with Collections.emptyList for com/github/yadickson/Clazz::getTables +file.javacom.github.yadickson.clazzmethod(Ljava/lang/String;)Ljava/lang/String;121org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator156replaced return value with "" for com/github/yadickson/Clazz::getOutputPath +file.javacom.github.yadickson.clazzmethod()V98org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator51removed call to com/github/yadickson/Clazz::info +file.javacom.github.yadickson.clazzmethod()V109org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator7911removed call to com/github/yadickson/Clazz::createTemplate +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;29org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator40negated conditional +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;30org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator102replaced return value with Collections.emptyList for com/github/yadickson/Clazz::getProcedures +file.javacom.github.yadickson.clazzmethod(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;44org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator579replaced return value with Collections.emptyList for com/github/yadickson/Clazz::getProcedures +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;31org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getName +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;23org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getPkg +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;39org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with "" for com/github/yadickson/Clazz::getType +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;81org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator167com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testRefCursorWithoutPackageName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getJavaTypeName +file.javacom.github.yadickson.clazzmethod()Ljava/util/List;91org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator50replaced return value with Collections.emptyList for com/github/yadickson/Clazz::getParameters +file.javacom.github.yadickson.clazzmethod()Z71org.pitest.mutationtest.engine.gregor.mutators.returns.BooleanFalseReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testResultSetByDefault(com.github.yadickson.ClazzTest)]replaced boolean return with false for com/github/yadickson/Clazz::isResultSet +file.javacom.github.yadickson.clazzmethod()I59org.pitest.mutationtest.engine.gregor.mutators.returns.PrimitiveReturnsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetSqlType(com.github.yadickson.ClazzTest)]replaced int return with 0 for com/github/yadickson/Clazz::getSqlType +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;69org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetSqlTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getSqlTypeName +file.javacom.github.yadickson.clazzmethod()I62org.pitest.mutationtest.engine.gregor.mutators.returns.PrimitiveReturnsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetSqlType(com.github.yadickson.ClazzTest)]replaced int return with 0 for com/github/yadickson/Clazz::getSqlType +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;72org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetSqlTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getSqlTypeName +file.javacom.github.yadickson.clazzmethod()Ljava/lang/String;62org.pitest.mutationtest.engine.gregor.mutators.returns.EmptyObjectReturnValsMutator40com.github.yadickson.ClazzTest.[engine:junit-vintage]/[runner:com.github.yadickson.ClazzTest]/[test:testGetJavaTypeName(com.github.yadickson.ClazzTest)]replaced return value with "" for com/github/yadickson/Clazz::getJavaTypeName +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::compare +file.javacom.github.yadickson.clazzmethod(Lcom/github/yadickson/Clazz::compare +file.javacom.github.yadickson.clazzmethod()Lfreemarker/template/Version;7org.pitest.mutationtest.engine.gregor.mutators.returns.NullReturnValsMutator91replaced return value with null for com/github/yadickson/Clazz::version + diff --git a/test/data/mutation/stryker/mutation.json b/test/data/mutation/stryker/mutation.json new file mode 100644 index 0000000..042d85d --- /dev/null +++ b/test/data/mutation/stryker/mutation.json @@ -0,0 +1 @@ +{"files":{"src/boolean-mapper.ts":{"language":"typescript","mutants":[{"id":"4","mutatorName":"BooleanLiteral","replacement":"true","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":71,"line":6},"start":{"column":66,"line":6}}},{"id":"5","mutatorName":"BlockStatement","replacement":"{}","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":4,"line":9},"start":{"column":82,"line":6}}},{"id":"6","mutatorName":"ConditionalExpression","replacement":"true","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":57,"line":7},"start":{"column":20,"line":7}}},{"id":"7","mutatorName":"ConditionalExpression","replacement":"false","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":57,"line":7},"start":{"column":20,"line":7}}},{"id":"8","mutatorName":"LogicalOperator","replacement":"input?.toString().trim() && byDefault","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":57,"line":7},"start":{"column":20,"line":7}}},{"id":"9","mutatorName":"OptionalChaining","replacement":"input.toString","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":35,"line":7},"start":{"column":20,"line":7}}},{"id":"10","mutatorName":"ConditionalExpression","replacement":"true","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":84,"line":8},"start":{"column":12,"line":8}}},{"id":"11","mutatorName":"ConditionalExpression","replacement":"false","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":84,"line":8},"start":{"column":12,"line":8}}},{"id":"12","mutatorName":"LogicalOperator","replacement":"(value === \"true\" || value === \"yes\" || value === \"oui\") && value === \"si\"","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":84,"line":8},"start":{"column":12,"line":8}}},{"id":"13","mutatorName":"ConditionalExpression","replacement":"false","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":66,"line":8},"start":{"column":12,"line":8}}},{"id":"14","mutatorName":"LogicalOperator","replacement":"(value === \"true\" || value === \"yes\") && value === \"oui\"","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":66,"line":8},"start":{"column":12,"line":8}}},{"id":"15","mutatorName":"ConditionalExpression","replacement":"false","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":47,"line":8},"start":{"column":12,"line":8}}},{"id":"16","mutatorName":"LogicalOperator","replacement":"value === \"true\" && value === \"yes\"","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":47,"line":8},"start":{"column":12,"line":8}}},{"id":"17","mutatorName":"ConditionalExpression","replacement":"false","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":28,"line":8},"start":{"column":12,"line":8}}},{"id":"18","mutatorName":"EqualityOperator","replacement":"value !== \"true\"","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":28,"line":8},"start":{"column":12,"line":8}}},{"id":"19","mutatorName":"StringLiteral","replacement":"\"\"","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":28,"line":8},"start":{"column":22,"line":8}}},{"id":"20","mutatorName":"ConditionalExpression","replacement":"false","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":47,"line":8},"start":{"column":32,"line":8}}},{"id":"21","mutatorName":"EqualityOperator","replacement":"value !== \"yes\"","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":47,"line":8},"start":{"column":32,"line":8}}},{"id":"22","mutatorName":"StringLiteral","replacement":"\"\"","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":47,"line":8},"start":{"column":42,"line":8}}},{"id":"23","mutatorName":"ConditionalExpression","replacement":"false","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":66,"line":8},"start":{"column":51,"line":8}}},{"id":"24","mutatorName":"EqualityOperator","replacement":"value !== \"oui\"","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":66,"line":8},"start":{"column":51,"line":8}}},{"id":"25","mutatorName":"StringLiteral","replacement":"\"\"","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":66,"line":8},"start":{"column":61,"line":8}}},{"id":"26","mutatorName":"ConditionalExpression","replacement":"false","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":84,"line":8},"start":{"column":70,"line":8}}},{"id":"27","mutatorName":"EqualityOperator","replacement":"value !== \"si\"","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":84,"line":8},"start":{"column":70,"line":8}}},{"id":"28","mutatorName":"StringLiteral","replacement":"\"\"","status":"NoCoverage","estimatedNetTime":0,"static":false,"coveredBy":[],"location":{"end":{"column":84,"line":8},"start":{"column":80,"line":8}}}],"source":"import { injectable } from \"inversify\";\nimport { BooleanMapperInterface } from \"boolean-mapper-interface\";\n\n@injectable()\nexport class BooleanMapper implements BooleanMapperInterface {\n public mapper(input: unknown, byDefault: boolean | undefined = false): boolean {\n const value = (input?.toString().trim() || byDefault).toString().toLowerCase();\n return value === \"true\" || value === \"yes\" || value === \"oui\" || value === \"si\";\n }\n}\n"},"src/boolean-mapper-module.ts":{"language":"typescript","mutants":[{"id":"0","mutatorName":"BlockStatement","replacement":"{}","statusReason":"Must call super constructor in derived class before accessing 'this' or returning from derived constructor","status":"Killed","estimatedNetTime":5,"hitCount":2,"static":false,"testsCompleted":1,"killedBy":["0"],"coveredBy":["0","1"],"location":{"end":{"column":4,"line":11},"start":{"column":17,"line":7}}},{"id":"1","mutatorName":"BlockStatement","replacement":"{}","statusReason":"expected false to equal true","status":"Killed","estimatedNetTime":5,"hitCount":2,"static":false,"testsCompleted":1,"killedBy":["0"],"coveredBy":["0","1"],"location":{"end":{"column":6,"line":10},"start":{"column":21,"line":8}}}],"source":"import { ContainerModule } from \"inversify\";\nimport { BooleanMapper } from \"boolean-mapper\";\nimport { BooleanMapperInterface } from \"boolean-mapper-interface\";\nimport { BOOLEAN_MAPPER_TYPE } from \"boolean-mapper-type\";\n\nexport class BooleanMapperModule extends ContainerModule {\n constructor() {\n super((bind) => {\n bind(BOOLEAN_MAPPER_TYPE.BooleanMapper).to(BooleanMapper);\n });\n }\n}\n"},"src/boolean-mapper-type.ts":{"language":"typescript","mutants":[{"id":"2","mutatorName":"ObjectLiteral","replacement":"{}","statusReason":"NULL argument","status":"Killed","estimatedNetTime":6,"hitCount":1,"static":true,"testsCompleted":1,"killedBy":["0"],"location":{"end":{"column":2,"line":3},"start":{"column":36,"line":1}}},{"id":"3","mutatorName":"StringLiteral","replacement":"\"\"","statusReason":"expected Symbol() to equal Symbol(BOOLEAN_MAPPER_TYPE -> BooleanMapperInterface)","status":"Killed","estimatedNetTime":6,"hitCount":1,"static":true,"testsCompleted":3,"killedBy":["2"],"location":{"end":{"column":76,"line":2},"start":{"column":29,"line":2}}}],"source":"export const BOOLEAN_MAPPER_TYPE = {\n BooleanMapper: Symbol.for(\"BOOLEAN_MAPPER_TYPE -> BooleanMapperInterface\"),\n};\n"}},"schemaVersion":"1.0","thresholds":{"high":100,"low":100,"break":100},"testFiles":{"":{"tests":[{"id":"0","name":"BooleanMapperModule tests should check bind BooleanMapper"},{"id":"1","name":"BooleanMapperModule tests should check BooleanMapperInterface"},{"id":"2","name":"BooleanMapperType tests should check BooleanMapper value"}]}},"projectRoot":"/Users/Develop/Documents/GitHub/inversify-boolean-mapper","config":{"$schema":"./node_modules/@stryker-mutator/core/schema/stryker-schema.json","testRunner":"mocha","coverageAnalysis":"perTest","reporters":["clear-text","progress","dots","html","json","event-recorder"],"mutate":["src/*.ts"],"mochaOptions":{"config":".mocharc.json"},"thresholds":{"high":100,"low":100,"break":100},"timeoutMs":60000,"concurrency":1,"allowConsoleColors":true,"checkers":[],"checkerNodeArgs":[],"maxTestRunnerReuse":0,"commandRunner":{"command":"npm test"},"clearTextReporter":{"allowColor":true,"logTests":true,"maxTestsToLog":3},"dashboard":{"baseUrl":"https://dashboard.stryker-mutator.io/api/reports","reportType":"full"},"eventReporter":{"baseDir":"reports/mutation/events"},"ignorePatterns":[],"fileLogLevel":"off","inPlace":false,"logLevel":"info","maxConcurrentTestRunners":9007199254740991,"mutator":{"plugins":null,"excludedMutations":[]},"plugins":["@stryker-mutator/*","node_modules/@stryker-mutator/core/dist/src/reporters/index.js"],"appendPlugins":[],"jsonReporter":{"fileName":"reports/mutation/mutation.json"},"disableTypeChecks":"{test,src,lib}/**/*.{js,ts,jsx,tsx,html,vue}","symlinkNodeModules":true,"tempDirName":".stryker-tmp","cleanTempDir":true,"testRunnerNodeArgs":[],"timeoutFactor":1.5,"timeoutMS":5000,"dryRunTimeoutMinutes":5,"tsconfigFile":"tsconfig.json","warnings":true,"disableBail":false,"configFile":"stryker.conf.json"},"framework":{"name":"StrykerJS","version":"5.6.1","branding":{"homepageUrl":"https://stryker-mutator.io","imageUrl":"data:image/svg+xml;utf8,%3Csvg viewBox='0 0 1458 1458' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2'%3E%3Cpath fill='none' d='M0 0h1458v1458H0z'/%3E%3CclipPath id='a'%3E%3Cpath d='M0 0h1458v1458H0z'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M1458 729c0 402.655-326.345 729-729 729S0 1131.655 0 729C0 326.445 326.345 0 729 0s729 326.345 729 729' fill='%23e74c3c' fill-rule='nonzero'/%3E%3Cpath d='M778.349 1456.15L576.6 1254.401l233-105 85-78.668v-64.332l-257-257-44-187-50-208 251.806-82.793L1076.6 389.401l380.14 379.15c-19.681 367.728-311.914 663.049-678.391 687.599z' fill-opacity='.3'/%3E%3Cpath d='M753.4 329.503c41.79 0 74.579 7.83 97.925 25.444 23.571 18.015 41.69 43.956 55.167 77.097l11.662 28.679 165.733-58.183-14.137-32.13c-26.688-60.655-64.896-108.61-114.191-144.011-49.329-35.423-117.458-54.302-204.859-54.302-50.78 0-95.646 7.376-134.767 21.542-40.093 14.671-74.09 34.79-102.239 60.259-28.84 26.207-50.646 57.06-65.496 92.701-14.718 35.052-22.101 72.538-22.101 112.401 0 72.536 20.667 133.294 61.165 182.704 38.624 47.255 98.346 88.037 179.861 121.291 42.257 17.475 78.715 33.125 109.227 46.994 27.193 12.361 49.294 26.124 66.157 41.751 15.309 14.186 26.497 30.584 33.63 49.258 7.721 20.214 11.16 45.69 11.16 76.402 0 28.021-4.251 51.787-13.591 71.219-8.832 18.374-20.171 33.178-34.523 44.219-14.787 11.374-31.193 19.591-49.393 24.466-19.68 5.359-39.14 7.993-58.69 7.993-29.359 0-54.387-3.407-75.182-10.747-20.112-7.013-37.144-16.144-51.259-27.486-13.618-11.009-24.971-23.766-33.744-38.279-9.64-15.8-17.272-31.924-23.032-48.408l-10.965-31.376-161.669 60.585 10.734 30.124c10.191 28.601 24.197 56.228 42.059 82.748 18.208 27.144 41.322 51.369 69.525 72.745 27.695 21.075 60.904 38.218 99.481 51.041 37.777 12.664 82.004 19.159 132.552 19.159 49.998 0 95.818-8.321 137.611-24.622 42.228-16.471 78.436-38.992 108.835-67.291 30.719-28.597 54.631-62.103 71.834-100.642 17.263-38.56 25.923-79.392 25.923-122.248 0-54.339-8.368-100.37-24.208-138.32-16.29-38.759-38.252-71.661-65.948-98.797-26.965-26.418-58.269-48.835-93.858-67.175-33.655-17.241-69.196-33.11-106.593-47.533-35.934-13.429-65.822-26.601-89.948-39.525-22.153-11.868-40.009-24.21-53.547-37.309-11.429-11.13-19.83-23.678-24.718-37.664-5.413-15.49-7.98-33.423-7.98-53.577 0-40.883 11.293-71.522 37.086-90.539 28.443-20.825 64.985-30.658 109.311-30.658z' fill='%23f1c40f' fill-rule='nonzero'/%3E%3Cpath d='M720 0h18v113h-18zM1458 738v-18h-113v18h113zM720 1345h18v113h-18zM113 738v-18H0v18h113z'/%3E%3C/g%3E%3C/svg%3E"},"dependencies":{"@stryker-mutator/mocha-runner":"5.6.1","mocha":"8.4.0","typescript":"4.9.5"}}} \ No newline at end of file