diff --git a/README.md b/README.md
index 7de6ee1..1826031 100644
--- a/README.md
+++ b/README.md
@@ -573,7 +573,7 @@ Argument.ofType(CustomType.class);
Use the `Argument.Matchable` interface and then use it with `Argument` APIs
```java
-@isTest
+@IsTest
public class MyMatchable implements Argument.Matchable {
public Boolean matches(Object callArgument) {
boolean matches = false;
diff --git a/apex-ruleset.xml b/apex-ruleset.xml
index 14aa9b9..603f58b 100644
--- a/apex-ruleset.xml
+++ b/apex-ruleset.xml
@@ -8,12 +8,12 @@
Custom Ruleset to use with Apex PMD
-
+
2
3
diff --git a/force-app/recipes/classes/ApexMockeryOverview.cls b/force-app/recipes/classes/ApexMockeryOverview.cls
index 3fccee2..5633f00 100644
--- a/force-app/recipes/classes/ApexMockeryOverview.cls
+++ b/force-app/recipes/classes/ApexMockeryOverview.cls
@@ -4,9 +4,9 @@
* SPDX-License-Identifier: BSD-3-Clause
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
-@isTest
+@IsTest
private class ApexMockeryOverview {
- @isTest
+ @IsTest
static void recipe() {
// Arrange
Mock deliveryServiceMock = Mock.forType(DeliveryService.class);
diff --git a/force-app/recipes/classes/OperaPastryMatchable.cls b/force-app/recipes/classes/OperaPastryMatchable.cls
index 4bbf141..e905021 100644
--- a/force-app/recipes/classes/OperaPastryMatchable.cls
+++ b/force-app/recipes/classes/OperaPastryMatchable.cls
@@ -4,7 +4,7 @@
* SPDX-License-Identifier: BSD-3-Clause
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
-@isTest
+@IsTest
public class OperaPastryMatchable implements Argument.Matchable {
public Boolean matches(Object callArgument) {
Pastry p = (Pastry) callArgument;
diff --git a/force-app/recipes/classes/asserting/HasBeenCalled.cls b/force-app/recipes/classes/asserting/HasBeenCalled.cls
index 4ca3ebc..2177b20 100644
--- a/force-app/recipes/classes/asserting/HasBeenCalled.cls
+++ b/force-app/recipes/classes/asserting/HasBeenCalled.cls
@@ -4,9 +4,9 @@
* SPDX-License-Identifier: BSD-3-Clause
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
-@isTest
+@IsTest
private class HasBeenCalled {
- @isTest
+ @IsTest
static void recipe() {
// Arrange
Mock deliveryServiceMock = Mock.forType(DeliveryService.class);
diff --git a/force-app/recipes/classes/asserting/HasBeenCalledTimes.cls b/force-app/recipes/classes/asserting/HasBeenCalledTimes.cls
index a6e2fb6..80fa456 100644
--- a/force-app/recipes/classes/asserting/HasBeenCalledTimes.cls
+++ b/force-app/recipes/classes/asserting/HasBeenCalledTimes.cls
@@ -4,9 +4,9 @@
* SPDX-License-Identifier: BSD-3-Clause
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
-@isTest
+@IsTest
private class HasBeenCalledTimes {
- @isTest
+ @IsTest
static void recipe() {
// Arrange
Mock deliveryServiceMock = Mock.forType(DeliveryService.class);
diff --git a/force-app/recipes/classes/asserting/HasBeenCalledWith.cls b/force-app/recipes/classes/asserting/HasBeenCalledWith.cls
index 823f67c..36c41a2 100644
--- a/force-app/recipes/classes/asserting/HasBeenCalledWith.cls
+++ b/force-app/recipes/classes/asserting/HasBeenCalledWith.cls
@@ -4,9 +4,9 @@
* SPDX-License-Identifier: BSD-3-Clause
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
-@isTest
+@IsTest
private class HasBeenCalledWith {
- @isTest
+ @IsTest
static void recipe() {
// Arrange
Mock deliveryServiceMock = Mock.forType(DeliveryService.class);
diff --git a/force-app/recipes/classes/asserting/HasBeenCalledWithCustomMatchable.cls b/force-app/recipes/classes/asserting/HasBeenCalledWithCustomMatchable.cls
index 037ce8d..f08add7 100644
--- a/force-app/recipes/classes/asserting/HasBeenCalledWithCustomMatchable.cls
+++ b/force-app/recipes/classes/asserting/HasBeenCalledWithCustomMatchable.cls
@@ -4,9 +4,9 @@
* SPDX-License-Identifier: BSD-3-Clause
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
-@isTest
+@IsTest
private class HasBeenCalledWithCustomMatchable {
- @isTest
+ @IsTest
static void recipe() {
// Arrange
Mock deliveryServiceMock = Mock.forType(DeliveryService.class);
diff --git a/force-app/recipes/classes/asserting/HasBeenCalledWithJSONMatchable.cls b/force-app/recipes/classes/asserting/HasBeenCalledWithJSONMatchable.cls
index 13323ae..1ce0a78 100644
--- a/force-app/recipes/classes/asserting/HasBeenCalledWithJSONMatchable.cls
+++ b/force-app/recipes/classes/asserting/HasBeenCalledWithJSONMatchable.cls
@@ -4,9 +4,9 @@
* SPDX-License-Identifier: BSD-3-Clause
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
-@isTest
+@IsTest
private class HasBeenCalledWithJSONMatchable {
- @isTest
+ @IsTest
static void recipe() {
// Arrange
Mock deliveryServiceMock = Mock.forType(DeliveryService.class);
diff --git a/force-app/recipes/classes/asserting/HasBeenCalledWithTypeMatchable.cls b/force-app/recipes/classes/asserting/HasBeenCalledWithTypeMatchable.cls
index 7b404a5..6d46f47 100644
--- a/force-app/recipes/classes/asserting/HasBeenCalledWithTypeMatchable.cls
+++ b/force-app/recipes/classes/asserting/HasBeenCalledWithTypeMatchable.cls
@@ -4,9 +4,9 @@
* SPDX-License-Identifier: BSD-3-Clause
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
-@isTest
+@IsTest
private class HasBeenCalledWithTypeMatchable {
- @isTest
+ @IsTest
static void recipe() {
// Arrange
Mock deliveryServiceMock = Mock.forType(DeliveryService.class);
diff --git a/force-app/recipes/classes/asserting/HasBeenLastCalledWith.cls b/force-app/recipes/classes/asserting/HasBeenLastCalledWith.cls
index 7bd5f0b..958fb17 100644
--- a/force-app/recipes/classes/asserting/HasBeenLastCalledWith.cls
+++ b/force-app/recipes/classes/asserting/HasBeenLastCalledWith.cls
@@ -4,9 +4,9 @@
* SPDX-License-Identifier: BSD-3-Clause
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
-@isTest
+@IsTest
private class HasBeenLastCalledWith {
- @isTest
+ @IsTest
static void recipe() {
// Arrange
Mock deliveryServiceMock = Mock.forType(DeliveryService.class);
diff --git a/force-app/recipes/classes/asserting/HasNotBeenCalled.cls b/force-app/recipes/classes/asserting/HasNotBeenCalled.cls
index 4c0df4f..5dbe6de 100644
--- a/force-app/recipes/classes/asserting/HasNotBeenCalled.cls
+++ b/force-app/recipes/classes/asserting/HasNotBeenCalled.cls
@@ -4,9 +4,9 @@
* SPDX-License-Identifier: BSD-3-Clause
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
-@isTest
+@IsTest
private class HasNotBeenCalled {
- @isTest
+ @IsTest
static void recipe() {
// Arrange
Mock deliveryServiceMock = Mock.forType(DeliveryService.class);
diff --git a/force-app/recipes/classes/mocking/Behave.cls b/force-app/recipes/classes/mocking/Behave.cls
index c663cc8..3b7099f 100644
--- a/force-app/recipes/classes/mocking/Behave.cls
+++ b/force-app/recipes/classes/mocking/Behave.cls
@@ -4,7 +4,7 @@
* SPDX-License-Identifier: BSD-3-Clause
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
-@isTest
+@IsTest
private class Behave {
class MockImpl implements MethodSpy.SpyBehavior {
public Object execute(final List