- All posts are released under CC 3.0 by-sa unless otherwise stated.
Pages
Follow me on Twitter!
My Tweets-
Recent Posts
Recent Comments
Categories
- AI
- bdd
- breaking models
- business value
- capability red
- climate
- coaching
- complexity
- conference
- csharp
- cynefin
- deliberate discovery
- evil hat
- feedback
- humour
- jbehave
- kanban
- lean
- learning
- learning models
- life
- nlp
- open source
- real options
- scale
- scrum
- spike and stabilize
- stakeholders
- stories
- testing
- Uncategorized
- uncertainty
- values
- writing
Archives
Meta
Author Archives: Liz
Six thinking hats
I’ve been wanting to try out Edward de Bono’s Six Thinking Hats for a while now, and finally got the opportunity in a workshop last week. I was working with a team who had a vague understanding of the roles … Continue reading
Posted in breaking models, coaching
5 Comments
Who’s the best person to fix this?
I hate blame cultures. If you hate them too, then you don’t need me to tell you why. If you don’t, you probably haven’t worked in one yet. At one client, they have a strong dislike for blame cultures. Unfortunately, … Continue reading
Posted in nlp
7 Comments
Standing-up dragging on?
There’s a standard format for stand-ups that goes: What did you do yesterday? What are you going to do today? As well as this, it helps to keep the focus on things that are interesting to the team. Sometimes this … Continue reading
Love for Pigs and Chickens
A phrase frequently used in the Scrum teams I’ve been involved in – as well as a few of the XP teams – is “Pigs and Chickens”. Googling the origin, I found out where it came from. Like many terms … Continue reading
Posted in scrum
4 Comments
C# mocks in action
Mike and Gabriel both posted comments to show how the Cowhand example in my last post might look and evolve with different mocking frameworks. They’ve used FluentSpec and Rhino Mocks respectively. Thanks, Mike and Gabriel! It was a pleasure to … Continue reading
Posted in bdd
Leave a comment
Given, when, then and examples for classes
Some of us have taken to writing comments in our BDD classes to give us Given, When, Then at a unit level. So, if I’m writing examples for a cowhand, I might write something like this: public class CowhandTest { … Continue reading
Posted in bdd
9 Comments
The problem with Scrum
Spurred by Dave Anderson’s blog pointing at Tobias Meyer’s blog… I once told this story to a group of people I was training as coaches. The problem with Waterfall Once upon a time some people noticed that their software projects … Continue reading
Posted in learning models
1 Comment
fail() failed…
Antony Marcano’s written a great post on testing for exceptions in a way which makes the example much easier to read, and keeps the Given / When / Then flow intact. I like this very much, and will be doing … Continue reading
Posted in bdd
2 Comments
Four ways of handling Givens
A Given is the context in which a feature is used When we write code, we want to know that it works. As developer, I want to know how to tell this before I even start coding, so that I … Continue reading