def test_9_4():
    numpy.testing.assert_equal(list(worker_chunk_counts(9, 4)), [3, 2, 2, 2])
def test_4_4():
    numpy.testing.assert_equal(list(worker_chunk_counts(4, 4)), [1, 1, 1, 1])
def test_1_4():
    numpy.testing.assert_equal(list(worker_chunk_counts(1, 4)), [1, 0, 0, 0])
def test_8_4():
    numpy.testing.assert_equal(list(worker_chunk_counts(8, 4)), [2, 2, 2, 2])
def test_5_4():
    numpy.testing.assert_equal(list(worker_chunk_counts(5, 4)), [2, 1, 1, 1])
def test_9_4():
  numpy.testing.assert_equal(list(worker_chunk_counts(9, 4)), [3, 2, 2, 2])
def test_1_4():
  numpy.testing.assert_equal(list(worker_chunk_counts(1, 4)), [1, 0, 0, 0])
def test_4_4():
  numpy.testing.assert_equal(list(worker_chunk_counts(4, 4)), [1, 1, 1, 1])
def test_5_4():
  numpy.testing.assert_equal(list(worker_chunk_counts(5, 4)), [2, 1, 1, 1])
def test_8_4():
  numpy.testing.assert_equal(list(worker_chunk_counts(8, 4)), [2, 2, 2, 2])