Questions tagged [fest-assert]

FEST is a collection of libraries whose mission is to simplify software testing. It is composed of various modules, which can be used with TestNG or JUnit. FEST-Assert provides a fluent interface for assertions. This means that you can use your development environments code completion features to build your asserts.

2 questions
11
votes
1 answer

Truth assertions library comparing to AssertJ

I used FEST-Assert and moved to AssertJ after it stopped development. Recently I was pointed to Google repository with another assertions library Truth (http://google.github.io/truth/). Reading the examples I can not find any advantage of start…
Eugen Martynov
  • 19,888
  • 10
  • 61
  • 114
1
vote
1 answer

writing custom pmd rule that checks for method not followed by chained method?

I use the "fest-assert" library in unit tests, which produce "fluent assertions" that are easy to read from left to right. If a developer hasn't written a test using TDD, they sometimes end up with a line of code like…
David M. Karr
  • 14,317
  • 20
  • 94
  • 199