public void FindNeighbours_OnBorder_ReachesOver() => NeighbourFinderBase.FindNeighbours_OnBorder(new OpenNeighbourFinder <StandardCell, StandardCellGrid>(), res => res.Count(c => c.IsAlive) == 2);
public void FindNeighbours_OnBorder_DoesNotReach() => NeighbourFinderBase.FindNeighbours_OnBorder(new ClosedNeighbourFinder <StandardCell, StandardCellGrid>(), res => !res.Any(c => c.IsAlive));
public void FindNeighbours_NoBorders_TwoAlive() => NeighbourFinderBase.FindNeighbours_NoBorders_TwoAlive(new OpenNeighbourFinder <StandardCell, StandardCellGrid>());
public void FindNeighbours_NoBorders_NoneAlive() => NeighbourFinderBase.FindNeighbours_NoBorders_NoneAlive(new ClosedNeighbourFinder <StandardCell, StandardCellGrid>());