Class AssertAll


  • class AssertAll
    extends java.lang.Object
    AssertAll is a collection of utility methods that support asserting multiple conditions in tests at once.
    Since:
    5.0
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private AssertAll()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      (package private) static void assertAll​(java.lang.String heading, java.util.Collection<Executable> executables)  
      (package private) static void assertAll​(java.lang.String heading, java.util.stream.Stream<Executable> executables)  
      (package private) static void assertAll​(java.lang.String heading, Executable... executables)  
      (package private) static void assertAll​(java.util.Collection<Executable> executables)  
      (package private) static void assertAll​(java.util.stream.Stream<Executable> executables)  
      (package private) static void assertAll​(Executable... executables)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AssertAll

        private AssertAll()
    • Method Detail

      • assertAll

        static void assertAll​(Executable... executables)
      • assertAll

        static void assertAll​(java.lang.String heading,
                              Executable... executables)
      • assertAll

        static void assertAll​(java.util.Collection<Executable> executables)
      • assertAll

        static void assertAll​(java.lang.String heading,
                              java.util.Collection<Executable> executables)
      • assertAll

        static void assertAll​(java.util.stream.Stream<Executable> executables)
      • assertAll

        static void assertAll​(java.lang.String heading,
                              java.util.stream.Stream<Executable> executables)