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