我需要为媒体浏览器编写测试。 测试应该自动通过所有可能的路径。
问题: 我只有一个文件列表,其中包含带有艺术家,专辑,流派等元标记的Mp3文件......
测试...... ...应根据标签自动浏览文件。
类型 - >艺术家 - >专辑 - >标题
假设我有三个文件:
File 1 <b>Artist1</b> Album1_1 <b>Title1_1_1</b> Pop_genre
File 2 <b>Artist1</b> Album1_2 <b>Title1_2_1</b> Pop_genre
File 3 <b>Artist2</b> Album2_1 <b>Title2_1_2</b> Rock_genre
然后测试的输出应该是这样的:
1. Move to genre="Pop_genre"
2. Move to genre="Pop_genre" AND artist="Artist1"
3. Move to genre="Pop_genre" AND artist="Artist1" AND album="Album1_1"
4. Move to genre="Pop_genre" AND artist="Artist1"
5. Move to genre="Pop_genre" AND artist="Artist1" AND album="Album2_1"
6. Move to genre="Pop_genre" AND artist="Artist1"
7. Move to genre="Pop_genre"
8. Move to genre="Rock_genre"
9. Move to genre="Rock_genre" AND artist="Artist2"
10. Move to genre="Rock_genre" AND artist="Artist2" AND album="Album2_1"
测试结束......
我知道这很重......有什么建议吗?
Offtopic:我们需要在markdown中支持表格......