From df948f16982a5b527bb1acb0b7d5b49f12b67875 Mon Sep 17 00:00:00 2001 From: Gaspar Nagy Date: Mon, 9 Nov 2009 17:29:18 +0100 Subject: [PATCH] =?UTF-8?q?=EF=BB=BFGerman=20language=20support=20in=20the?= =?UTF-8?q?=20runtime=20(test=20added)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Tests/RuntimeTests/ExecutionTestBase.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Tests/RuntimeTests/ExecutionTestBase.cs b/Tests/RuntimeTests/ExecutionTestBase.cs index 817cab5e6..ed50254a3 100644 --- a/Tests/RuntimeTests/ExecutionTestBase.cs +++ b/Tests/RuntimeTests/ExecutionTestBase.cs @@ -29,6 +29,13 @@ public void CanExecuteSimpleFeature() CanGenerateFromFile(Path.Combine(folder, "simple.feature")); } + [Test] + public void CanExecuteGermanFeature() + { + var folder = Path.GetFullPath(Path.Combine(TestFileHelper.GetProjectLocation(), "TestFiles")); + CanGenerateFromFile(Path.Combine(folder, "german.feature")); + } + [Test] public void CanExecuteCommentsFeature() {