Skip to content

Instantly share code, notes, and snippets.

@codehaks
codehaks / excuses.json
Created January 31, 2021 16:46 — forked from mhmda-83/excuses.json
Devloper Excuses (extracted from http://developerexcuses.com/)
[
"That code seemed so simple I didn't think it needed testing",
"That isn't covered by my job description",
"I can't test everything",
"That's not a bug it's a configuration issue",
"That wasn't in the original specification",
"It's just some unlucky coincidence",
"Oh, you said you DIDN'T want that to happen?",
"There were too many developers working on that same thing",
"I have too many other high priority things to do right now",
using System;
using static Domain.Result;
namespace Domain
{
public readonly struct Result
{
private readonly Result<int, StringError> _result => new Result<int, StringError>(0);
public int Value => _result.Value;