object ReferencingCollector
- Alphabetic
- By Inheritance
- ReferencingCollector
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- case class NodeInfo(td: ApexDeclaration, primary: Boolean) extends Product with Serializable
- case class TestInfo(testClass: ApexDeclaration, explain: List[ApexDeclaration]) extends Product with Serializable
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def testReferences(sourceTds: Set[NodeInfo]): Set[TestInfo]
Given some Types, find all referencing Apex tests.
Given some Types, find all referencing Apex tests. To find all relevant tests the input should include related types such as superclasses, interfaces and nested types with the primary flag set to false. Test classes included in the input will be contained in the results.
- def toString(): String
- Definition Classes
- AnyRef → Any
- def visitApexReferences(sourceTds: Set[NodeInfo], visitPath: (Boolean, List[ApexDeclaration]) => Boolean): Unit
Visit references to the passed type declarations.
Visit references to the passed type declarations. The visit function is called on all unique declarations discovered, the current path being passed as a list where the head is the current node and last is the origin. Spidering continues while the function returns true. If you return false the current path is not expanded further, but it may be revisited on other unexplored branches.
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()