my thoughts on grouping #bdd items using #vscommands - any other ideas?
Bar.cs | |
+-BarSpecs.cs | |
Foo.cs | |
+- FooSpecs.cs | |
vs. | |
Bar.cs | |
BarSpecs.cs (with common Bar related IBehaviorConfigs) | |
+- when_bar_has_this.cs | |
+- when_bar_has_that.cs | |
Foo.cs | |
FooSpecs.cs (with common Foo related IBehaviorConfigs) | |
+- when_foo_does_this.cs | |
+- when_foo_does_that.cs |
This comment has been minimized.
This comment has been minimized.
+1 |
This comment has been minimized.
This comment has been minimized.
Thanks guys, sounds reasonable to me. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
At the moment I would favour:
Bar.cs
+- BarSpecs.cs
and optionally
Bar.cs
+- BarThisSpecs.cs
+- BarThatSpecs.cs
+- BarOtherSpecs.cs
Because the grouping is only visible in VS, there should be some coherence in the file system.