aboutsummaryrefslogtreecommitdiff
path: root/test cases/csharp
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-02-25 01:14:01 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2018-02-25 01:14:01 +0200
commit26010807db3540c95deabc7444c20239de95ae76 (patch)
treeb910e1f71e43f2ef57bc71fcff06158dcfd6a70f /test cases/csharp
parent0c3af38c3ef90f27302aeaca1124bc2f4123ef12 (diff)
downloadmeson-26010807db3540c95deabc7444c20239de95ae76.zip
meson-26010807db3540c95deabc7444c20239de95ae76.tar.gz
meson-26010807db3540c95deabc7444c20239de95ae76.tar.bz2
Removed test dir 4 which was doing the same thing as the other test dir number 4.
Diffstat (limited to 'test cases/csharp')
-rw-r--r--test cases/csharp/4 pkgconfig/meson.build12
-rw-r--r--test cases/csharp/4 pkgconfig/test-lib.cs11
2 files changed, 0 insertions, 23 deletions
diff --git a/test cases/csharp/4 pkgconfig/meson.build b/test cases/csharp/4 pkgconfig/meson.build
deleted file mode 100644
index 3062fca..0000000
--- a/test cases/csharp/4 pkgconfig/meson.build
+++ /dev/null
@@ -1,12 +0,0 @@
-project('C# pkg-config', 'cs')
-
-nunit_dep = dependency('nunit', required : false)
-
-if not nunit_dep.found()
- error('MESON_SKIP_TEST nunit not found.')
-endif
-
-nunit_runner = find_program('nunit-console')
-
-test_lib = library('test_lib', 'test-lib.cs', dependencies: nunit_dep)
-test('nunit test', nunit_runner, args: test_lib)
diff --git a/test cases/csharp/4 pkgconfig/test-lib.cs b/test cases/csharp/4 pkgconfig/test-lib.cs
deleted file mode 100644
index 29f6795..0000000
--- a/test cases/csharp/4 pkgconfig/test-lib.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using NUnit.Framework;
-
-[TestFixture]
-public class NUnitTest
-{
- [Test]
- public void Test()
- {
- Assert.AreEqual(1 + 1, 2);
- }
-}