You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
21 lines
422 B
C
21 lines
422 B
C
/**
|
|
* @file
|
|
* @brief Header (template) for tests built with Catch2 v3.0 or later
|
|
* @author Jonathan Thomas <jonathan@openshot.org>
|
|
* @author FeRD (Frank Dana) <ferdnyc@gmail.com>
|
|
*
|
|
* @ref License
|
|
*/
|
|
|
|
// Copyright (c) 2008-2022 OpenShot Studios, LLC
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#ifndef OPENSHOT_CATCH2_H
|
|
#define OPENSHOT_CATCH2_H
|
|
|
|
#include <catch2/catch_all.hpp>
|
|
using namespace Catch;
|
|
|
|
#endif
|