public void GetTest1(int id, bool isEmpty)
        {
            var controller = new FootballManagerController();
            List <PlayerTeam> playerTeams = (List <PlayerTeam>)controller.Get(id);

            NUnit.Framework.Assert.AreEqual((playerTeams.Count == 0), isEmpty);
        }
        public void GetTest()
        {
            var controller = new FootballManagerController();
            List <PlayerTeam> playerTeams = (List <PlayerTeam>)controller.Get();

            NUnit.Framework.Assert.IsNotNull(playerTeams);
        }