mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-26 00:17:49 +01:00
This test is successful on Linux but fails on Windows currently because of the incorrect realpath implementation for windows in pbd/path_expand.cc
18 lines
409 B
C++
18 lines
409 B
C++
|
|
#include <cppunit/TestFixture.h>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
class SessionTest : public CppUnit::TestFixture
|
|
{
|
|
CPPUNIT_TEST_SUITE (SessionTest);
|
|
CPPUNIT_TEST (new_session);
|
|
CPPUNIT_TEST (new_session_from_template);
|
|
CPPUNIT_TEST (open_session_utf8_path);
|
|
CPPUNIT_TEST_SUITE_END ();
|
|
|
|
public:
|
|
|
|
void new_session ();
|
|
void new_session_from_template ();
|
|
void open_session_utf8_path ();
|
|
};
|