new TestSuite 
	'title': 'Div Text Update'
	'subtitle': 'Update the textContent of a div 10,000 times'
	'measureMethod': 'sync'
	'warmUps': 10000
	'timesToRun': 10000
	'setupFn': (container$)->
		@obj = 'prop':'value'
		@div$ = $('<div />')
		currentValue = 0

		SimplyBind('prop').of(@obj)
			.to('textContent').of(@div$)

		@getNewValue = ()-> "value#{currentValue++}"
		
		
		container$.append @div$
		return

	'teardownFn': (container$)->
		container$.empty()
		SimplyBind.unBindAll(@obj, true)
		SimplyBind.unBindAll(@div$, true)

		delete @obj
		delete @div$
		delete @getNewValue


	'testFn': ()-> @obj.prop = @getNewValue()