On Tue, 2017-04-04 at 15:23 +, Kagamin via Digitalmars-d-learn
wrote:
> Same as anywhere else. Integration test is a test that connects
> to a deployed system, which is different from unittest only in
> philosophical aspect.
Well according to the standard definitions connecting to a deployed
https://github.com/ikod/dlang-requests/blob/master/tests/app.d
On Wednesday, 5 April 2017 at 21:58:16 UTC, Inquie wrote:
What I am looking for is something like StringBuilder in C#.
If you want it to not copy data on expand, there's nothing like
that in D yet. I wrote one for myself :)
On Wednesday, 5 April 2017 at 21:58:16 UTC, Inquie wrote:
What I am looking for is something like StringBuilder in C#.
std.array.appender
On Thu, 2017-04-06 at 13:08 +, Kagamin via Digitalmars-d-learn
wrote:
> https://github.com/ikod/dlang-requests/blob/master/tests/app.d
Which implies that in the D milieu all tests are unittests even if they
are not unittests. Sad use of terminology and jargon, but I can see it
working.
Is the
06.04.2017 16:49, Russel Winder via Digitalmars-d-learn пишет:
On Thu, 2017-04-06 at 13:08 +, Kagamin via Digitalmars-d-learn
wrote:
https://github.com/ikod/dlang-requests/blob/master/tests/app.d
Which implies that in the D milieu all tests are unittests even if they
are not unittests. Sad
On Thu, 2017-04-06 at 16:57 +0300, drug via Digitalmars-d-learn wrote:
>
[…]
> I'm not sure about terminology too, but did you try some like
> https://code.dlang.org/packages/unit-threaded?
> I use it and am satisfied.
I was slowly sidling up to using this as the inbuilt system is a tad
primitiv
On Wednesday, 5 April 2017 at 12:42:23 UTC, evilrat wrote:
On Wednesday, 5 April 2017 at 12:13:38 UTC, Satoshi wrote:
Hi,
How can I build single exe application with vibe.d (windows)?
now it require zlib.dll, libeay32.dll and ssleay32.dll
But I need it as single app.
btw, if all you need is t
On Wednesday, 5 April 2017 at 12:13:38 UTC, Satoshi wrote:
Hi,
How can I build single exe application with vibe.d (windows)?
now it require zlib.dll, libeay32.dll and ssleay32.dll
But I need it as single app.
One solution would be to compile vibe.d without ssl support
that way it will not need
Many languages have a "spread" operator which takes a sequence and
creates positional argument to a (usually variadic but not necessarily)
function. Does D have such a facility?
(Such a facility looks like it might be really, really useful when
writing unit-threaded tests.)
--
Russel.
==
On Thursday, 6 April 2017 at 18:25:27 UTC, Russel Winder wrote:
Many languages have a "spread" operator which takes a sequence
and creates positional argument to a (usually variadic but not
necessarily) function. Does D have such a facility?
(Such a facility looks like it might be really, real
I am used to a function name being a reference to the function body,
cf. lots of other languages. However D rejects:
iterative
as a thing can put in an array, it requires:
(n) => iterative(n)
Presumably this introduces inefficiency at run time? I.e. the extra
level of indirectio
On Thursday, 6 April 2017 at 18:37:51 UTC, Russel Winder wrote:
I am used to a function name being a reference to the function
body, cf. lots of other languages. However D rejects:
iterative
Try
&iterative
The compiler would probably optimize out a trivial thing anyway,
but &foo
On 04/06/2017 11:37 AM, Russel Winder via Digitalmars-d-learn wrote:
I am used to a function name being a reference to the function body,
cf. lots of other languages. However D rejects:
iterative
as a thing can put in an array, it requires:
(n) => iterative(n)
Presumably this
Hello! I've got an issue related to making a Tuple or AliasSeq
using income template arguments. I want to create template makes
an array of objects from array of arrays have different sizes and
different types of values.
I created temporary solution. It is a concatenation of strings
that will
15 matches
Mail list logo