Skip to content

Commit 60677e9

Browse files
committed
Disabled check for PHP files in TestWebRoot test.
1 parent 542b596 commit 60677e9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

PhpVH.Tests.Integration/BasicTests.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ public void TestWebroot()
7676
.GetFiles(Settings.Webroot, "*", SearchOption.AllDirectories)
7777
.Where(x => Path.GetExtension(x).ToLower() == ".php");
7878

79-
if (!phpFiles.Any())
80-
{
81-
var msg = string.Format("Could not find PHP files in webroot \"{0}\".", Settings.Webroot);
82-
throw new AssertionException(msg);
83-
}
79+
//if (!phpFiles.Any())
80+
//{
81+
// var msg = string.Format("Could not find PHP files in webroot \"{0}\".", Settings.Webroot);
82+
// throw new AssertionException(msg);
83+
//}
8484
}
8585

8686
[Test(Description = "PHP test"), Category("PhpTest")]

0 commit comments

Comments
 (0)