LCOV - code coverage report
Current view: top level - package/core - core_module.cpp (source / functions) Hit Total Coverage
Test: wfc_core-coverage.info Lines: 1 8 12.5 %
Date: 2019-09-05 Functions: 2 8 25.0 %

          Line data    Source code
       1             : 
       2             : #include "core_module.hpp"
       3             : #include "core/core_singleton.hpp"
       4             : #include <wfc/module/component_list.hpp>
       5             : #include <wfc/name.hpp>
       6             : 
       7             : namespace wfc{  namespace core{
       8             : 
       9             : namespace 
      10             : {
      11           0 :   WFC_NAME2(module_name, "core")
      12             : 
      13           0 :   class impl: public ::wfc::component_list
      14             :   <
      15             :     module_name,
      16             :     core_singleton
      17             :   >
      18             :   {
      19           0 :     virtual std::string description() const override
      20             :     {
      21           0 :       return "Оne-component module";
      22             :     }
      23             :   };
      24             : }
      25             : 
      26           0 : core_module::core_module()
      27           0 :   : module( std::make_shared<impl>() )
      28             : {
      29           0 : }
      30             : 
      31           3 : }}

Generated by: LCOV version 1.10