You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.1 KiB
56 lines
1.1 KiB
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using cat_cafe.Controllers;
|
|
using cat_cafe.Dto;
|
|
using cat_cafe.Mappers;
|
|
using cat_cafe.Repositories;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using NuGet.Protocol.Core.Types;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace cat_cafe.Controllers.Tests
|
|
{
|
|
[TestClass()]
|
|
public class CatsControllerTest
|
|
{
|
|
[TestMethod()]
|
|
public void GetCatsTest()
|
|
{
|
|
Assert.Fail();
|
|
}
|
|
|
|
[TestMethod()]
|
|
public void GetCatTest()
|
|
{
|
|
Assert.Fail();
|
|
}
|
|
|
|
[TestMethod()]
|
|
public void PutCatTest()
|
|
{
|
|
Assert.Fail();
|
|
}
|
|
|
|
[TestMethod()]
|
|
public void PostCatTest()
|
|
{
|
|
Assert.Fail();
|
|
}
|
|
|
|
[TestMethod()]
|
|
public void DeleteCatTest()
|
|
{
|
|
Assert.Fail();
|
|
}
|
|
|
|
[TestMethod()]
|
|
public void CatExistsTest()
|
|
{
|
|
Assert.Fail();
|
|
}
|
|
}
|
|
}
|