WrongPackageNameCompatFactory.java

1
package fr.sii.ogham.email.sendgrid.v4.sender.impl.sendgrid.compat;
2
3
/**
4
 * Compatibility factory that creates compatibility wrappers.
5
 * 
6
 * @author Aurélien Baudet
7
 * @see CompatUtil
8
 */
9
public class WrongPackageNameCompatFactory implements CompatFactory {
10
11
	@Override
12
	public MailCompat newMail() {
13 1 1. newMail : replaced return value with null for fr/sii/ogham/email/sendgrid/v4/sender/impl/sendgrid/compat/WrongPackageNameCompatFactory::newMail → NO_COVERAGE
		return new WrongPackageNameMailCompat();
14
	}
15
16
	@Override
17
	public AttachmentsCompat newAttachments() {
18 1 1. newAttachments : replaced return value with null for fr/sii/ogham/email/sendgrid/v4/sender/impl/sendgrid/compat/WrongPackageNameCompatFactory::newAttachments → NO_COVERAGE
		return new WrongPackageNameAttachmentsCompat();
19
	}
20
21
	@Override
22
	public PersonalizationCompat newPersonalization() {
23 1 1. newPersonalization : replaced return value with null for fr/sii/ogham/email/sendgrid/v4/sender/impl/sendgrid/compat/WrongPackageNameCompatFactory::newPersonalization → NO_COVERAGE
		return new WrongPackageNamePersonalizationCompat();
24
	}
25
26
}

Mutations

13

1.1
Location : newMail
Killed by : none
replaced return value with null for fr/sii/ogham/email/sendgrid/v4/sender/impl/sendgrid/compat/WrongPackageNameCompatFactory::newMail → NO_COVERAGE

18

1.1
Location : newAttachments
Killed by : none
replaced return value with null for fr/sii/ogham/email/sendgrid/v4/sender/impl/sendgrid/compat/WrongPackageNameCompatFactory::newAttachments → NO_COVERAGE

23

1.1
Location : newPersonalization
Killed by : none
replaced return value with null for fr/sii/ogham/email/sendgrid/v4/sender/impl/sendgrid/compat/WrongPackageNameCompatFactory::newPersonalization → NO_COVERAGE

Active mutators

Tests examined


Report generated by PIT OGHAM