public ConventionBasedBuildResultFilePathProvider(IFilesystemAccessor filesystemAccessor, IRelativeFilePathInfoFactory relativeFilePathInfoFactory)
        {
            if (filesystemAccessor == null)
            {
                throw new ArgumentNullException("filesystemAccessor");
            }

            if (relativeFilePathInfoFactory == null)
            {
                throw new ArgumentNullException("relativeFilePathInfoFactory");
            }

            this.filesystemAccessor = filesystemAccessor;
            this.relativeFilePathInfoFactory = relativeFilePathInfoFactory;
        }
 public void Setup()
 {
     this.relativeFilePathInfoFactory = new RelativeFilePathInfoFactory();
 }