Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created September 17, 2019 03:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IntegerMan/c5e0c45e5527b97f38f905c06da530c6 to your computer and use it in GitHub Desktop.
Save IntegerMan/c5e0c45e5527b97f38f905c06da530c6 to your computer and use it in GitHub Desktop.
using System.Linq;
using MattEland.Starship.Logic;
using NUnit.Framework;
namespace Tests
{
public class RepositoryTests
{
[Test]
public void RepositoryShouldStartWithGameState()
{
// Arrange
var repository = new GameRepository();
// Act
var games = repository.Games;
// Assert
Assert.Greater(games.Count(), 0);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment