test("count creation with valid integer number", () => {
    const count = new Count(5);
    const flatten = count.flatten();
    expect(flatten).toContain(CommandKeyword.COUNT);
    expect(flatten).toContain(5);