~aleteoryx/muditaos

ref: edc7fd63cb0c677709ffb2f5cf8aac089aa0dada muditaos/module-gui/test/test-catch-text/main.cpp -rw-r--r-- 478 bytes
edc7fd63 — SP2FET [EGD-4579] Add bluetooth settings storage 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

#define CATCH_CONFIG_MAIN
#include <catch2/catch.hpp>
#include <vfs.hpp>
#include <i18n/i18n.hpp>

class vfs vfs;        // needed for compilation, our vfs is global
utils::i18n localize; // needed to load any keymap - these are stored in i18

struct vfs_initializer
{
    vfs_initializer()
    {
        vfs.Init();
    }
} vfs_initializer;