org.sonar.api.test
Interface Testable

All Superinterfaces:
Perspective
All Known Subinterfaces:
MutableTestable

public interface Testable
extends Perspective


Method Summary
 int countTestCasesOfLine(Integer line)
           
 CoverageBlock coverageBlock(TestCase testCase)
           
 Iterable<CoverageBlock> coverageBlocks()
           
 TestCase testCaseByName(String key)
           
 List<TestCase> testCases()
           
 Map<Integer,Integer> testCasesByLines()
           
 List<TestCase> testCasesOfLine(int line)
           
 SortedSet<Integer> testedLines()
           
 
Methods inherited from interface org.sonar.api.component.Perspective
component
 

Method Detail

testCases

List<TestCase> testCases()

testCaseByName

TestCase testCaseByName(String key)

countTestCasesOfLine

int countTestCasesOfLine(Integer line)

testCasesByLines

Map<Integer,Integer> testCasesByLines()

testCasesOfLine

List<TestCase> testCasesOfLine(int line)

testedLines

SortedSet<Integer> testedLines()

coverageBlock

CoverageBlock coverageBlock(TestCase testCase)

coverageBlocks

Iterable<CoverageBlock> coverageBlocks()


Copyright © 2009–2015 SonarSource. All rights reserved.