* @brief Checks whether a trial period expired. */
| 120 | * @brief Checks whether a trial period expired. |
| 121 | */ |
| 122 | bool Licensing::Trial::trialExpired() const |
| 123 | { |
| 124 | return m_deviceRegistered && trialAvailable() && (!m_trialEnabled || daysRemaining() <= 0); |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * @brief Checks if a trial can be started. |
no outgoing calls
no test coverage detected