1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 using Xunit;
6 
7 namespace System.IO.Tests
8 {
9     public class FileInfo_Delete : File_Delete
10     {
Delete(string path)11         public override void Delete(string path)
12         {
13             new FileInfo(path).Delete();
14         }
15     }
16 }
17