All public logs

From wikinotes

Combined display of all available logs of wikinotes. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 15:48, 23 July 2022 Will talk contribs created page Programming Testing: Isolation (Created page with "This page is about writing code in a way that it can be tested in isolation (without collaborators). = Overrides = <blockquote> If possible in your language, you can override methods with a fake, or a mock. </blockquote><!-- Overrides --> = Separating Produce/Modify = <blockquote> Separate creating/fetching info from mutating it.<br> This lets you test your mutations independently of collaborators with a variety of inputs. <syntaxhighlight lang="go"> func GetHtml() s...")