com.twitter.summingbird

TestGraphs

class TestGraphs[P <: Platform[P], T, K, V] extends AnyRef

Source
TestGraphs.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. TestGraphs
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TestGraphs(platform: P)(store: () ⇒ P.Store[K, V])(sink: () ⇒ P.Sink[T])(sourceMaker: (TraversableOnce[T]) ⇒ Producer[P, T])(toLookupFn: (P.Store[K, V]) ⇒ (K) ⇒ Option[V])(toSinkChecker: (P.Sink[T], List[T]) ⇒ Boolean)(run: (P, P.Plan[_]) ⇒ Unit)(implicit arg0: Manifest[T], arg1: Arbitrary[T], arg2: Arbitrary[K], arg3: Arbitrary[V], arg4: Equiv[V], arg5: Monoid[V])

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def diamondChecker(items: List[T], fnA: (T) ⇒ List[(K, V)], fnB: (T) ⇒ List[(K, V)]): Boolean

  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  15. def leftJoinChecker[U, JoinedU](service: P.Service[K, JoinedU], serviceToFn: (P.Service[K, JoinedU]) ⇒ (K) ⇒ Option[JoinedU], items: List[T], preJoinFn: (T) ⇒ List[(K, U)], postJoinFn: ((K, (U, Option[JoinedU]))) ⇒ List[(K, V)])(implicit arg0: Arbitrary[U], arg1: Arbitrary[JoinedU]): Boolean

    Accepts a platform, a service of K -> JoinedU and a supplier of an EMPTY store from K -> V and returns a ScalaCheck property.

    Accepts a platform, a service of K -> JoinedU and a supplier of an EMPTY store from K -> V and returns a ScalaCheck property. The property generates random functions between the types required by leftJoinJob, wires up a summingbird job using those functions and runs the job using the supplied platform.

    Results are retrieved using the supplied toMap function. The service is tested in scala's in-memory mode using serviceToFn, and the initial data source is generated using the supplied sourceMaker function.

  16. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  19. def singleStepChecker(items: List[T], fn: (T) ⇒ List[(K, V)]): Boolean

    Accepts a platform, and supplier of an EMPTY store from K -> V and returns a ScalaCheck property.

    Accepts a platform, and supplier of an EMPTY store from K -> V and returns a ScalaCheck property. The property generates a random function from T => TraversableOnce[(K, V)], wires up singleStepJob summingbird job using this function and runs the job using the supplied platform.

    Results are retrieved using the supplied toMap function. The initial data source is generated using the supplied sourceMaker function.

  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  21. def toString(): String

    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped