-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from ricaun-io/develop
Version 1.0.5 - Support `TestCaseSource`
- Loading branch information
Showing
3 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
using NUnit.Framework; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Linq; | ||
|
||
namespace RevitTest.Sample | ||
{ | ||
public class Tests_Files | ||
{ | ||
public static IEnumerable<string> GetFileNames() | ||
{ | ||
var folder = Directory.GetCurrentDirectory(); | ||
return Directory.GetFiles(folder, "*RevitTest*.dll").Select(Path.GetFileName); | ||
} | ||
|
||
[TestCaseSource(nameof(GetFileNames))] | ||
public void TestFile(string fileName) | ||
{ | ||
Console.WriteLine(fileName); | ||
Assert.True(true); | ||
} | ||
|
||
public static string[] GetRevitFileNames() | ||
{ | ||
var downloadFolder = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), "Downloads"); | ||
return Directory.GetFiles(downloadFolder, "*.rvt"); | ||
} | ||
|
||
[TestCaseSource(nameof(GetRevitFileNames))] | ||
public void TestRevitFile(string fileName) | ||
{ | ||
Console.WriteLine(fileName); | ||
Assert.True(true); | ||
} | ||
} | ||
} |