Klasse StandardTest

java.lang.Object
ch.nolix.core.testing.standardtest.StandardTest

public abstract class StandardTest extends Object
Version:
2016-09-01
Autor:
Silvan Wyss
  • Konstruktordetails

    • StandardTest

      public StandardTest()
  • Methodendetails

    • expect

      protected static final BooleanMediator expect(boolean argument)
      Parameter:
      argument -
      Gibt zurück:
      a new BooleanMediator for the given argument.
    • expect

      protected static final ByteMediator expect(byte argument)
      Parameter:
      argument -
      Gibt zurück:
      a new ByteMediator for the given argument.
    • expect

      protected static final DoubleMediator expect(double argument)
      Parameter:
      argument -
      Gibt zurück:
      a new double mediator that belongs to this test and is for the given argument.
    • expect

      protected static final DoubleMediator expect(Double argument)
      Parameter:
      argument -
      Gibt zurück:
      a new double mediator that belongs to this test and is for the given argument.
    • expect

      protected static final LongMediator expect(int argument)
      Parameter:
      argument -
      Gibt zurück:
      a new long mediator that belongs to this test and is for the given argument.
    • expect

      protected static final LongMediator expect(Integer argument)
      Parameter:
      argument -
      Gibt zurück:
      a new long mediator that belongs to this test and is for the given argument.
    • expect

      protected static final <E> IterableMediator<E> expect(Iterable<E> container)
      Typparameter:
      E - is the type of the elements of the given container.
      Parameter:
      container -
      Gibt zurück:
      a new container mediator that belongs to this test and is for the given container.
    • expect

      protected static final LongMediator expect(long argument)
      Parameter:
      argument -
      Gibt zurück:
      a new long mediator that belongs to this test and is for the given argument.
    • expect

      protected static final LongMediator expect(Long argument)
      Parameter:
      argument -
      Gibt zurück:
      a new long mediator that belongs to this test and is for the given argument.
    • expect

      protected static final <T> IOptionalMediator expect(Optional<T> argument)
      Typparameter:
      T - is the type of the element of the given Optional argument.
      Parameter:
      argument -
      Gibt zurück:
      a new IOptionalMediator for the given argument.
    • expect

      protected static final <V> ArgumentMediator<V> expect(V argument)
      Typparameter:
      V - is the type of the given argument.
      Parameter:
      argument -
      Gibt zurück:
      a new object mediator that belongs to this test and has the given argument.
    • expect

      protected static final StringMediator expect(String argument)
      Parameter:
      argument -
      Gibt zurück:
      a new string mediator that belongs to this nolix test and has the given argument.
    • expectRunning

      protected static final ClosureMediator expectRunning(Runnable closure)
      Parameter:
      closure -
      Gibt zurück:
      a new closure mediator that belongs for the given closure.
    • expectTheDoubles

      protected static final MultiDoubleMediator expectTheDoubles(double... arguments)
      Parameter:
      arguments -
      Gibt zurück:
      a new multi double mediator that belongs to this test and is for the given arguments.
    • expectTheDoubles

      protected static final MultiDoubleMediator expectTheDoubles(Iterable<Double> arguments)
      Parameter:
      arguments -
      Gibt zurück:
      a new multi double mediator that belongs to this test and is for the given arguments.
    • expectTheInts

      protected static final MultiLongMediator expectTheInts(int argument, int... arguments)
      Parameter:
      argument -
      arguments -
      Gibt zurück:
      a new multi long mediator that belongs to this test and is for the given arguments.
    • expectTheLongs

      protected static final MultiLongMediator expectTheLongs(Iterable<Long> arguments)
      Parameter:
      arguments -
      Gibt zurück:
      a new long container mediator that belongs to this test and has the given arguments.
    • expectTheLongs

      protected static final MultiLongMediator expectTheLongs(long argument, long... arguments)
      Parameter:
      argument -
      arguments -
      Gibt zurück:
      a new long container mediator that belongs to this test and has the given arguments.