extreme-programming

User stories - Card, conversation and confirmation [closed]

余生长醉 提交于 2020-01-02 23:13:46
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 2 years ago . I don't understand a thing about the Card, Conversation, Confirmation formula for user stories. I don't understand if the conversation and confirmation part must be written down or they remain as a dialogue, in particular the CONVERSATION part. To be clear: is it right if a

What methodology is closest to the Surgical Team in The Mythical Man-Month? [closed]

痴心易碎 提交于 2019-12-20 14:46:11
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 2 years ago . The Mythical Man-Month is now classic, but the "Surgical Team" methodology is still interesting. What methodology most closely resembles it or has the same essence? To summarize the Surgical Team analogy: A surgeon understands the problem/business domain and is the expert.

What is the difference between Scrum and Extreme Programming? [closed]

♀尐吖头ヾ 提交于 2019-12-20 08:49:19
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 2 years ago . A few years ago I have worked on a green field project where we did Extreme Programming. I also see a lot of people mention the Scrum methodology. Could someone tell me the main differences between Scrum and XP? 回答1: Scrum is a software development methodology, XP is a programming

User Stories - Problems that can't be made user stories [closed]

耗尽温柔 提交于 2019-12-18 11:14:24
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 2 years ago . I am from an XP background. I know the process very well and have solid working experience with it. I have found it to be the best way to develop software. I find myself in the position of a process doctor of sorts and this creates much self examination and revaluation of my

User Stories - Problems that can't be made user stories [closed]

☆樱花仙子☆ 提交于 2019-11-30 02:31:04
I am from an XP background. I know the process very well and have solid working experience with it. I have found it to be the best way to develop software. I find myself in the position of a process doctor of sorts and this creates much self examination and revaluation of my own understandings. A very common thing I hear is that some work can’t be made into stories. I personally don’t believe this. The excuses include Its too big (The developer will have nothing to show until the end of 5 weeks). it’s a complicated algorithm or abstract concept (will take 5 weeks to write and nothing to show).

Unit Testing bash scripts

不羁的心 提交于 2019-11-27 06:08:15
We have a system that has some bash scripts running besides Java code. Since we are trying to Test Everything That Could Possibly Break, and those bash scripts may break, we want to test them. The problem is it is hard to test bash scripts. Is there a way or a best practice to test bash scripts? Or should we quit using bash scripts and look for alternative solutions that are testable? ire_and_curses There is actually a shunit2 , an xUnit based unit test framework for Bourne based shell scripts. I haven't used it myself, but it might be worth checking out. Similar questions have been asked

Unit Testing bash scripts

这一生的挚爱 提交于 2019-11-26 11:52:05
问题 We have a system that has some bash scripts running besides Java code. Since we are trying to Test Everything That Could Possibly Break, and those bash scripts may break, we want to test them. The problem is it is hard to test bash scripts. Is there a way or a best practice to test bash scripts? Or should we quit using bash scripts and look for alternative solutions that are testable? 回答1: There is actually a shunit2, an xUnit based unit test framework for Bourne based shell scripts. I haven