Re: am i choosing write way of producing stuf?

2020-10-26 Thread AudioGames . net Forum — Developers room : chrisnorman7 via Audiogames-reflector
Re: am i choosing write way of producing stuf? @8Could well be mate. I just set stuff up so it was convenient for me, but you could well be right about the whole naming convention thing.With the CTRL+P shortcut in VS Code, I guess it's a moot point, considering how lenient the search

Re: am i choosing write way of producing stuf?

2020-10-25 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector
Re: am i choosing write way of producing stuf? thankyou friends. actually, i don't like following a perticular thing. i just like to go on with what you need. i just wan't to know others experiences on this structure URL: https://forum.audiogames.net/post/583382/#p583382

Re: am i choosing write way of producing stuf?

2020-10-25 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: am i choosing write way of producing stuf? @7Interesting, I didn't know it supported that.  I think naming your tests that way is one of those blindisms though: I've never seen a codebase that doesn't put test at the beginning of the name. URL: https://forum.audiogames.net/post/583245

Re: am i choosing write way of producing stuf?

2020-10-25 Thread AudioGames . net Forum — Developers room : chrisnorman7 via Audiogames-reflector
Re: am i choosing write way of producing stuf? @4You can put _test at the end too, so you can navigate through files and functions more easily.Admittedly, I always name my functions starting with test_, but that's because I'm a creature of habit mor than anything else.@1If you're asking

Re: am i choosing write way of producing stuf?

2020-10-25 Thread AudioGames . net Forum — Developers room : NicklasMCHD via Audiogames-reflector
Re: am i choosing write way of producing stuf? Either that, or you could opt for test driven development, if you know what you want / what you need before you start coding URL: https://forum.audiogames.net/post/583206/#p583206 -- Audiogames-reflector mailing list Audiogames-reflector

Re: am i choosing write way of producing stuf?

2020-10-25 Thread AudioGames . net Forum — Developers room : Dragonlee via Audiogames-reflector
Re: am i choosing write way of producing stuf? that is a pretty standard setup, which is highly recommended. however developing things first under the test folder and then moving them into the src folder doesn't make any sense to me. So after you move it into the src folder, the unit tests

Re: am i choosing write way of producing stuf?

2020-10-25 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: am i choosing write way of producing stuf? Usually, you put the unit tests in one directory (because they're not part of your source code), then you just develop modules in the source code directly and add unit tests as you go.  That said, the only part of this that's odd

Re: am i choosing write way of producing stuf?

2020-10-25 Thread AudioGames . net Forum — Developers room : TextAdventurer via Audiogames-reflector
Re: am i choosing write way of producing stuf? Hi @bhanuponguruThis is the kind of question I think you could ask 5 programmers and get 5 different answers.  My two cents are, as long as you're doing unit testing, you're starting on the right foot.  I'm sure there are all kinds

Re: am i choosing write way of producing stuf?

2020-10-25 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: am i choosing write way of producing stuf? I'm not sure what you are hoping to hear. There is not a "right" way of "producing stuff". If this works for you, I do not see reasons for concern URL: https://forum.audiogames.net/post/583130/#p583130 -- Audiogam

Re: am i choosing write way of producing stuf?

2020-10-25 Thread AudioGames . net Forum — Developers room : TextAdventurer via Audiogames-reflector
Re: am i choosing write way of producing stuf? Hi @bhanuponguruThis is the kind of question I think you could ask 5 programmers and get 5 different answers.  My two cents are, as long as you're doing unit testing, you're starting on the right foot.  I'm sure there are all kinds

am i choosing write way of producing stuf?

2020-10-25 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector
am i choosing write way of producing stuf? friends, i just wan't to know your openion.first, i learned unit testing in order to save my time in testing my modules.then i chosen this structurefirst i devide my project in to 2 parts. one is testing, and srcin testing i do create modules

am i choosing write way of producing stuf?

2020-10-25 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector
am i choosing write way of producing stuf? friends, i just wan't to know your openion.first, i learned unit testing in order to save my time in testing my modules.then i chosen this structurefirst i devide my project in to 2 parts. one is testing, and srcin testing i do create modules