From 65f361405e7ecbc9d7c8ee7c36b5c050e85cb889 Mon Sep 17 00:00:00 2001 From: heldev Date: Tue, 4 Apr 2017 18:30:46 -0400 Subject: [PATCH] Add Mutability Detector to Testing It's a niche product that fills, it has some development activity and it's Java 8 compatible. Maybe useful as a FindBugs plugin/standalone CLI tool or as a part of unit tests. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index cad3982..612125f 100644 --- a/README.md +++ b/README.md @@ -780,6 +780,7 @@ A curated list of awesome Java frameworks, libraries and software. * [Mockito](https://github.com/mockito/mockito) - Creation of test double objects in automated unit tests for the purpose of TDD or BDD. * [MockServer](http://www.mock-server.com/) - Allows mocking of systems that are integrated with HTTP/S. * [Moco](https://github.com/dreamhead/moco) - Concise web services for stubs and mocks, Duke's Choice Award 2013. +* [Mutability Detector](https://github.com/MutabilityDetector/MutabilityDetector) - Set of assertions/tool that reports on whether instances of a given class are immutable. * [PIT](http://pitest.org) - Fast mutation-testing framework for evaluating fault-detection abilities of existing JUnit or TestNG test-suites. * [pojo-tester](http://www.pojo.pl/) - Automatically performs tests on basic POJO-methods. * [PowerMock](https://github.com/jayway/powermock) - Enables mocking of static methods, constructors, final classes and methods, private methods and removal of static initializers.