2023-03-30 10:36:51 -07:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Xunit;
|
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using MontoyaTech.Rest.Net;
|
|
|
|
|
using System.Net;
|
|
|
|
|
|
2023-07-09 11:14:33 -07:00
|
|
|
|
namespace MontoyaTech.Rest.Net.Tests
|
2023-03-30 10:36:51 -07:00
|
|
|
|
{
|
|
|
|
|
public class RestClientGeneratorTests
|
|
|
|
|
{
|
|
|
|
|
[Fact]
|
|
|
|
|
public void RestClientGenerator_HttpStatusCode_Should_BeSystemType()
|
|
|
|
|
{
|
|
|
|
|
var generator = new RestClientGenerator();
|
|
|
|
|
|
|
|
|
|
generator.IsTypeDotNet(typeof(HttpStatusCode)).Should().BeTrue();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|