12345678910111213141516171819202122232425 |
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- using PackageUploader;
- /* ==============================================================================
- * 功能描述:UntilityTests
- * 创 建 者:Garrett
- * 创建日期:2019/6/14 9:56:33
- * ==============================================================================*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PackageUploader.Tests
- {
- [TestClass()]
- public class UntilityTests
- {
- [TestMethod()]
- public void UploadCompressTest()
- {
- Assert.Fail();
- }
- }
- }
|