LCOV - code coverage report
Current view: top level - src/problems - NoSolveProblem.C (source / functions) Hit Total Coverage
Test: idaholab/moose subchannel: #31405 (292dce) with base fef103 Lines: 11 12 91.7 %
Date: 2025-09-04 07:58:06 Functions: 5 5 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : //* This file is part of the MOOSE framework
       2             : //* https://mooseframework.inl.gov
       3             : //*
       4             : //* All rights reserved, see COPYRIGHT for full restrictions
       5             : //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
       6             : //*
       7             : //* Licensed under LGPL 2.1, please see LICENSE for details
       8             : //* https://www.gnu.org/licenses/lgpl-2.1.html
       9             : 
      10             : #include "NoSolveProblem.h"
      11             : 
      12             : registerMooseObject("SubChannelApp", NoSolveProblem);
      13             : 
      14             : InputParameters
      15         270 : NoSolveProblem::validParams()
      16             : {
      17         270 :   InputParameters params = ExternalProblem::validParams();
      18         270 :   params.addClassDescription("Dummy problem class that doesn't solve anything");
      19         270 :   return params;
      20           0 : }
      21             : 
      22         135 : NoSolveProblem::NoSolveProblem(const InputParameters & params) : ExternalProblem(params) {}
      23             : 
      24             : void
      25         330 : NoSolveProblem::externalSolve()
      26             : {
      27         330 : }
      28             : 
      29             : void
      30         660 : NoSolveProblem::syncSolutions(Direction /*direction*/)
      31             : {
      32         660 : }
      33             : 
      34             : bool
      35         330 : NoSolveProblem::solverSystemConverged(const unsigned int)
      36             : {
      37         330 :   return true;
      38             : }

Generated by: LCOV version 1.14