Files
PocketSharp/PocketSharp.Tests/ExploreTests.cs
T
2019-04-05 14:12:31 +02:00

26 lines
423 B
C#

using PocketSharp.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
using Xunit;
using System.Linq;
namespace PocketSharp.Tests
{
public class ExploreTests : TestsBase
{
public ExploreTests() : base()
{
}
//[Fact]
//public async Task CheckPreRequestAction()
//{
// var results = await client.Explore(".net");
// Assert.NotEmpty(results);
//}
}
}