def test_generate_multiplication_table_to_pdf():
    filename = 'test_generate_multiplication_table_to_pdf.tex'
    contents = generate_table(start_int=0,
                              end_int=10,
                              table_type='Multiplication')
    convert_latex_to_pdf(filename=filename, contents=contents, view=True)
    remove_temporary_files(filename)
def test_generate_table():
    contents = generate_table(start_int=0, end_int=10, table_type='Addition')
    assert contents is not None