Sha256: 0b1649c893495ccc17b5ea13712fe78f83fee0439913f215e8d41e6046a1a11b
Contents?: true
Size: 886 Bytes
Versions: 23
Compression:
Stored size: 886 Bytes
Contents
// ========================================================================== // Project: TestRunner.testsController // Copyright: ©2009 Apple Inc. // ========================================================================== /*globals TestRunner */ /** @class Manages the list of tests for the currently focused target. @extends SC.ArrayController */ TestRunner.testsController = SC.ArrayController.create( /** @scope TestRunner.testsController.prototype */ { contentBinding: "TestRunner.targetController.tests", /** Enables/disables continuous integration mode. */ useContinuousIntegration: NO, /** Whenever we are actually showing the tests, then controls are enabled. Set to YES when in READY_LIST mode. */ isShowingTests: YES, statusDidChange: function() { TestRunner.sendAction('testsDidChange'); }.observes('status') }) ;
Version data entries
23 entries across 23 versions & 1 rubygems