FileExistsConstraint
FileExistsConstraint is used to determine if a file exists
using System;
namespace NUnit.Framework.Constraints
{
[Obsolete("FileExistsConstraint is deprecated, please use FileOrDirectoryExistsConstraint instead.")]
public class FileExistsConstraint : FileOrDirectoryExistsConstraint
{
public override string Description => "file exists";
public FileExistsConstraint()
: base(true)
{
}
}
}