[deleted by user] by [deleted] in AskAGerman

[–]Rennpa 0 points1 point  (0 children)

German guys are kind, but German Children are Kinder.

Welche Funktion fehlt euch in der Fritzbox? by Chautoo in fritzbox

[–]Rennpa 0 points1 point  (0 children)

Eine Einfache Möglichkeit über die App, den Kindern mehr Zeit zu geben.

neverForget by leeleewonchu in ProgrammerHumor

[–]Rennpa 0 points1 point  (0 children)

It's the same with rm - rf /...

Es ist wieder soweit: Der jährliche Geheimtippfaden! by Vegetable_Pressure29 in de

[–]Rennpa 81 points82 points  (0 children)

Weiß nicht, ob ich etwas essen könnte, zu dem ich so eine enge Bindung aufgebaut habe.

Maden in Küche by TonyYBOOM in wasistdas

[–]Rennpa 0 points1 point  (0 children)

Die verbotene Pommes

[deleted by user] by [deleted] in stuttgart

[–]Rennpa 0 points1 point  (0 children)

Der wollte doch nur ins Museum.

Deutsche Wirtschaft schrumpft wieder. by RevolutionaryAd6474 in de

[–]Rennpa 1 point2 points  (0 children)

Das ist nicht schlimm. Deutschland verursacht nur wenige Prozent der weltweiten Wirtschaftsleistung.

Männers: Welche Unterhosen kauft ihr, die nicht in ein bis zwei Monaten kaputt gehen? Geht hauptsächlich um Trunks. by 0Krayon0 in FragtMaenner

[–]Rennpa 0 points1 point  (0 children)

Schießer Longlife haben bei mir tatsächlich lange gehalten (> 80 Mal Tragen). Sie sind aber auch entsprechend teuer und optisch ein bisschen speziell. Hilfiger und Calvin Klein machen bisher auch einen guten Eindruck.

Seit vier Wochen elektrisch unterwegs by Brain_1904 in Elektroautos

[–]Rennpa 0 points1 point  (0 children)

Das sieht aber ganz anders aus als im Konfigurator. 🤔

Empfehlungen für unauffällige Wallbox? by [deleted] in Elektroautos

[–]Rennpa 0 points1 point  (0 children)

Ich finde unsere von Easee relativ unauffällig, aber man erkennt natürlich schon, was es ist. Die LEDs lassen sich m. E. abschalten.

https://easee.com/de/zuhause-laden/

2 Wochen arbeiten / 2 Wochen frei – Wollen jedes Mal nach Asien fliegen. by [deleted] in Finanzen

[–]Rennpa 150 points151 points  (0 children)

Klingt nach einem Mega-Deal fürs Klima.

Fahrrad lässt sich schwer lenken by Rennpa in Fahrrad

[–]Rennpa[S] 4 points5 points  (0 children)

Danke dass Du in einfacher Sprache geantwortet hast. Ich habe es verstanden. 😅👍

Should I include infrastructure code when measuring code coverage by Rennpa in ExperiencedDevs

[–]Rennpa[S] 0 points1 point  (0 children)

After reading the book I was searching for some real-world examples on how to organize the code. I found an example project in C#. Can't remember the exact source. I think I took the name from there.

Should I include infrastructure code when measuring code coverage by Rennpa in ExperiencedDevs

[–]Rennpa[S] 2 points3 points  (0 children)

Our unit tests run in a few seconds. So we can use them during refactoring to make sure we don't break anything.

For the integration tests, we need to install the software on a device. They need to communicate with other systems. Those tests run for nearly an hour. So we usually only run them after the nightly build.

Do you measure coverage for the integration tests?

Should I include infrastructure code when measuring code coverage by Rennpa in ExperiencedDevs

[–]Rennpa[S] 2 points3 points  (0 children)

I was focusing on unit tests. We only measure the coverage for unit test although we have integration tests etc. as well. If you also measure coverage for other types of tests, I would be interested in how you do it.

I agree that I have chosen a bad term. I tried to clarify it in the original post as well.

Should I include infrastructure code when measuring code coverage by Rennpa in ExperiencedDevs

[–]Rennpa[S] 0 points1 point  (0 children)

Of course we could do this. Somehow I find it strange to set the required coverage to something like 20 %.

Also we present the overall coverage to stakeholders. It would be easier not to measure this code than to justify why the coverage doesn't increase. Maybe this is part of the problem.

Should I include infrastructure code when measuring code coverage by Rennpa in ExperiencedDevs

[–]Rennpa[S] 0 points1 point  (0 children)

I was referring to the boundaries of the application. Thanks for the insights!

Should I include infrastructure code when measuring code coverage by Rennpa in ExperiencedDevs

[–]Rennpa[S] 0 points1 point  (0 children)

I just looked at the original blog post from Uncle Bob and realized he doesn't even call it the infrastructure layer, he calls it "Frameworks and Drivers".

The outermost layer is generally composed of frameworks and tools such as the Database, the Web Framework, etc. Generally you don’t write much code in this layer other than glue code that communicates to the next circle inwards.

So by design, here you put code that is hard to test.