LCOV - code coverage report
Current view: top level - src/actions - NSFVActionDeprecation.C (source / functions) Hit Total Coverage
Test: idaholab/moose navier_stokes: #32971 (54bef8) with base c6cf66 Lines: 10 11 90.9 %
Date: 2026-05-29 20:37:52 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         553 : NSFVActionDeprecation::validParams()
      16             : {
      17         553 :   InputParameters params = Action::validParams();
      18         553 :   params.addClassDescription("Helper class to smooth the deprecation of the NSFV Action");
      19             : 
      20         553 :   return params;
      21           0 : }
      22             : 
      23         553 : NSFVActionDeprecation::NSFVActionDeprecation(const InputParameters & parameters)
      24         553 :   : Action(parameters)
      25             : {
      26         553 :   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         553 : }
      32             : 
      33             : void
      34         473 : NSFVActionDeprecation::act()
      35             : {
      36         473 : }

Generated by: LCOV version 1.14