Remove dummy plugs

This commit is contained in:
rr- 2016-02-19 21:56:22 +01:00 committed by Frédéric Mangano
parent 3a320a7b39
commit 15c9f187a5
3 changed files with 0 additions and 19 deletions

View File

@ -1,6 +0,0 @@
#include "dummy.h"
int opustags::return_one()
{
return 1;
}

View File

@ -1,6 +0,0 @@
#pragma once
namespace opustags
{
int return_one();
}

View File

@ -1,7 +0,0 @@
#include "dummy.h"
#include "catch.h"
TEST_CASE("A dummy test")
{
REQUIRE(opustags::return_one() == 1);
}