tenpn

554
reputation
36 views

Registered User

name tenpn
member for 1 year
seen 7 hours ago
website
location GB
age 27
UK games programmer with C++, Lua, C# and Python experience
Nov
27
comment Can I link maxOccurs in my schema to a value of another attribute in the target xml file?
Both the two answers so far are correct, but I'm going to tick this one for the schematron link. Thanks for the info, guys.
Nov
26
asked Can I link maxOccurs in my schema to a value of another attribute in the target xml file?
Nov
6
comment How do I print the ‘%’ character with ‘printf’?
plus-1 for being sly ;)
Oct
26
comment Iterating through a Lua table from C++?
Glen Maynard created some useful debug info for visual studio, which makes parsing that lua_State object so much easier. Instructions here: lua-users.org/lists/lua-l/…
Oct
22
comment I can’t seem to get the XPATH right for XSD UNIQE Constraint
Thanks. My xml schema had set xmlns to be the same as my target xml, which I thought would be enough. I added a sub-namespace (is that what you'd call it?) to the schema and used that for my xpaths and now everything works. \o/
Oct
20
comment I can’t seem to get the XPATH right for XSD UNIQE Constraint
Where did the mstns come from?
Sep
29
awarded  Popular Question
Sep
17
awarded  Yearling
Aug
31
comment How to TDD functionality in a base mixin class from one of many leaf classes?
@mark - that's "implementation details": there's only a common base class because of common code. Also it doesn't enforce the behaviors. Someone could update that test and the behaviors would disappear. However I suppose if the behaviors aren't being used by some other tests, or app code, you're not going to miss them.
Aug
31
awarded  Nice Answer
Aug
28
comment How to TDD functionality in a base mixin class from one of many leaf classes?
This is what I ended up doing, but I still am not happy with the results. If I had to refactor one of my leaf classes to derive from another class, I would lose functionality without the tests telling me so.
Aug
27
comment Developing to an interface with TDD
pulled out my comment into a new question: stackoverflow.com/questions/1340712/…
Aug
27
asked How to TDD functionality in a base mixin class from one of many leaf classes?
Aug
27
comment Developing to an interface with TDD
I've still got problems. I've taken the approach of test-driving two identical classes, then refactoring to a common interface. When adding a third class, I cut-n-pasted the tests and made each compile and go green in turn by adding the interface to the class. This is error-prone if my cut-n-pasting goes wrong, but that's not my issue. Now I'm in the situation where I can use tests to add functionality to the interface from one class, but that functionality will have no tests to support it in the other classes. I have to remember to copy the tests across. This doesn't seem right?
Aug
25
awarded  Popular Question