Files
PocketSharp/PocketSharp.Tests/ExploreTests.cs
T
2018-07-14 23:26:57 +02:00

26 lines
411 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);
}
}
}