OpenCoverage

qquickdragaxis.cpp

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/qtdeclarative/src/qtdeclarative/src/quick/handlers/qquickdragaxis.cpp
Switch to Source codePreprocessed file
LineSourceCount
1-
2-
3QQuickDragAxis::QQuickDragAxis()-
4 : m_minimum(-std::numeric_limits<qreal>::max())-
5 , m_maximum(std::numeric_limits<qreal>::max())-
6 , m_enabled(true)-
7{-
8}
executed 792 times by 3 tests: end of block
Executed by:
  • tst_flickableinterop
  • tst_multipointtoucharea_interop
  • tst_qquickdraghandler
792
9-
10void QQuickDragAxis::setMinimum(qreal minimum)-
11{-
12 if (m_minimum == minimum
m_minimum == minimumDescription
TRUEnever evaluated
FALSEevaluated 388 times by 2 tests
Evaluated by:
  • tst_flickableinterop
  • tst_qquickdraghandler
)
0-388
13 return;
never executed: return;
0
14-
15 m_minimum = minimum;-
16 minimumChanged();-
17}
executed 388 times by 2 tests: end of block
Executed by:
  • tst_flickableinterop
  • tst_qquickdraghandler
388
18-
19void QQuickDragAxis::setMaximum(qreal maximum)-
20{-
21 if (m_maximum == maximum
m_maximum == maximumDescription
TRUEnever evaluated
FALSEevaluated 582 times by 2 tests
Evaluated by:
  • tst_flickableinterop
  • tst_qquickdraghandler
)
0-582
22 return;
never executed: return;
0
23-
24 m_maximum = maximum;-
25 maximumChanged();-
26}
executed 582 times by 2 tests: end of block
Executed by:
  • tst_flickableinterop
  • tst_qquickdraghandler
582
27-
28void QQuickDragAxis::setEnabled(bool enabled)-
29{-
30 if (m_enabled == enabled
m_enabled == enabledDescription
TRUEnever evaluated
FALSEevaluated 194 times by 2 tests
Evaluated by:
  • tst_flickableinterop
  • tst_qquickdraghandler
)
0-194
31 return;
never executed: return;
0
32-
33 m_enabled = enabled;-
34 enabledChanged();-
35}
executed 194 times by 2 tests: end of block
Executed by:
  • tst_flickableinterop
  • tst_qquickdraghandler
194
Switch to Source codePreprocessed file

Generated by Squish Coco 4.2.0