I'm trying to implement Bresenham's Circle drawing algorithm and I intend to draw a circumscribed and inscribed circle (circumcircle and incircle) in a triangle. I need some simple ways to find coordinates of an equilateral triangle to test my code.
Any help will be appreciated. Thanks.

Unfortunately, the coordinates of the vertices of an equilateral triangle can't all be integers. As dxiv pointed out, this is because $\sqrt 3$ is irrational. If it doesn't have to be exactly equilateral, you could have e.g. circumcentre (0, 0), radius 5, points $(0, 5), (\pm 4, -3)$. The angles are about $73.7^\circ, 53.1^\circ, 53.1^\circ$. A triangle which is closer to being equilateral has circumcentre $(0, 0)$, radius 89 and points $(0, 89)$, $(\pm 80, 39)$. The angles are about $64^\circ, 58^\circ, 58^\circ$.
If the circumcentre's coordinates don't have to be integers, then there are triangles with lower integer coordinates which are better approximations to equilateral triangles, e.g. where the vertices' coordinates are $(0, 0), (x, y), (y, x)$ where $\frac{y}x\approx \arctan \frac{\pi}{12}$, e.g.