📄 sorttest.groovy
字号:
/** * @author <a href="mailto:james@coredevelopers.net">James Strachan</a> * @version $Revision: 1.3 $ */class SortTest extends GroovyTestCase { void testSortWithOrderBy() { def list = getPeople() def order = new OrderBy( { it.cheese } ) list.sort(order) assert list[0].name == 'Joe' assert list[-1].name == 'Chris' assert list.name == ['Joe', 'Bob', 'James', 'Chris'] println "Sorted by cheeee" list.each { println it.dump() } } void testSortWithClosure() { def list = getPeople() list.sort { it.cheese } assert list.name == ['Joe', 'Bob', 'James', 'Chris'] println "Sorted by cheeee" list.each { println it.dump() } } def getPeople() { def answer = [] answer << new Expando(name:'James', cheese:'Edam', location:'London') answer << new Expando(name:'Bob', cheese:'Cheddar', location:'Atlanta') answer << new Expando(name:'Chris', cheese:'Red Leicester', location:'London') answer << new Expando(name:'Joe', cheese:'Brie', location:'London') return answer }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -