This document discusses whether Scrum is the best choice for a company called YOYO. It introduces Scrum and its roles, artifacts, and events. For YOYO, the author suggests using Kanban instead of strictly following Scrum, as Kanban allows for transparency and continuous process improvement through inspection and adaptation, which aligns with Scrum theory. The author's overall suggestion is to think about your own context and continuously improve, and that Scrum may not always be the best choice.
This document discusses whether Scrum is the best choice for a company called YOYO. It introduces Scrum and its roles, artifacts, and events. For YOYO, the author suggests using Kanban instead of strictly following Scrum, as Kanban allows for transparency and continuous process improvement through inspection and adaptation, which aligns with Scrum theory. The author's overall suggestion is to think about your own context and continuously improve, and that Scrum may not always be the best choice.
The document discusses concepts related to software product development goals. It defines output as the working software built, outcome as changes seen in the world after delivery, and impact as longer term effects seen over time from multiple instances of use. It also discusses how lack of consensus on goals and vision at the start of a project can be deadly, as assumptions of agreement where none exists kill most projects. It recommends communicating goals, vision, and context to the team so they can make decisions, and giving stakeholders enough information to decide whether to proceed with the project.
98. # cd /var/www/cakephp/app
# ./Console/cake bake
What would you like to Bake? (D/M/V/C/P/F/T/Q)
> T
Enter the type of object to bake a test for or (q)uit
(1/2/3/4/5/q)
[q] > 1
Choose a Model class
1. AppModel
2. Post
> 2
Wrote
`/var/www/cakephp/app/Test/Case/Model/PostTest.php`
99. What would you like to Bake? (D/M/V/C/P/F/T/Q)
> F
---------------------------------------------------------------
Bake Fixture
Path: /var/www/cakephp-2.6.4/app/Test/Fixture/
---------------------------------------------------------------
Use Database Config: (default/test)
Possible Models based on your current database:
1. Post
Enter a number from the list above,
type in the name of another model, or 'q' to exit
[q] > 1
Would you like to import schema for this fixture? (y/n)
[n] > y
Would you like to use record importing for this fixture? (y/n)
[n] > y
Baking test fixture for Post...
Creating file /var/www/cakephp-2.6.4/app/Test/Fixture/PostFixture.php
Wrote `/var/www/cakephp-2.6.4/app/Test/Fixture/PostFixture.php`
100. public function testgetActive(){
$actives = $this->Post->getActive();
foreach($actives as $row) {
$this->assertEquals('1', $row['Post']['active']);
}
}
/var/www/cakephp/app/Test/Case/Model/PostTest.php
http://IPアドレス/test.php