LCOV - code coverage report
Current view: top level - src/actions - NSFVActionDeprecation.C (source / functions) Hit Total Coverage
Test: idaholab/moose navier_stokes: 9fc4b0 Lines: 10 11 90.9 %
Date: 2025-08-14 10:14:56 Functions: 3 3 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 "NSFVActionDeprecation.h"
      11             : 
      12             : registerMooseAction("NavierStokesApp", NSFVActionDeprecation, "nsfv_action_deprecation_task");
      13             : 
      14             : InputParameters
      15         991 : NSFVActionDeprecation::validParams()
      16             : {
      17         991 :   InputParameters params = Action::validParams();
      18         991 :   params.addClassDescription("Helper class to smooth the deprecation of the NSFV Action");
      19             : 
      20         991 :   return params;
      21           0 : }
      22             : 
      23         991 : NSFVActionDeprecation::NSFVActionDeprecation(const InputParameters & parameters)
      24         991 :   : Action(parameters)
      25             : {
      26         991 :   mooseDeprecated("The NSFVAction, used through the [Modules/NavierStokesFV] syntax is deprecated. "
      27             :                   "Please modify your input file to use the [Physics/NavierStokes/<specific "
      28             :                   "Physics syntax (Flow/FluidHeatTransfer/...)>/<name>] syntax.\n"
      29             :                   "A help section for this transition is available on the MOOSE website: "
      30             :                   "https://mooseframework.inl.gov/syntax/Modules/NavierStokesFV/index.html");
      31         991 : }
      32             : 
      33             : void
      34         911 : NSFVActionDeprecation::act()
      35             : {
      36         911 : }

Generated by: LCOV version 1.14