using cat_cafe.Controllers; 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(); } } }