| 3848 | } |
| 3849 | |
| 3850 | bool isColourImplAvailable( ColourMode colourSelection ) { |
| 3851 | switch ( colourSelection ) { |
| 3852 | #if defined( CATCH_CONFIG_COLOUR_WIN32 ) |
| 3853 | case ColourMode::Win32: |
| 3854 | #endif |
| 3855 | case ColourMode::ANSI: |
| 3856 | case ColourMode::None: |
| 3857 | case ColourMode::PlatformDefault: |
| 3858 | return true; |
| 3859 | default: |
| 3860 | return false; |
| 3861 | } |
| 3862 | } |
| 3863 | |
| 3864 | |
| 3865 | } // end namespace Catch |
no outgoing calls
no test coverage detected