#include "cester.h"
#include <stdio.h>
#include "grid.h"



CESTER_TEST(test_grid_get_cell, grid,
    {
        struct Grid* grid = grid_new(5, 5);
        for(int x = 0; x < 5; ++x) {
            for(int y = 0; y < 5; ++y) {
                cester_assert_equal(NONE, get_grid(grid, x, y));                
            }
        }
    }
)