VOOZH about

URL: https://www.javacodegeeks.com/author/ashley-frieze/page/12

⇱ Ashley Frieze, Author at Java Code Geeks - Page 12 of 14


  • Core Java👁 Image
    Ashley FriezeNovember 25th, 2019
    0 141

    A Surprising Injection

    So, I owe Jim an apology. He’d written a working mockito and JUnit test, and I told him in review…

    Read More »
  • Software Development👁 Image
    Ashley FriezeNovember 24th, 2019
    0 154

    Fuzzy Assertions

    As discussed in other Test Smells, like Trail by Competitive Calculation, and It Passed Yesterday, it’s very easy to create…

    Read More »
  • Core Java👁 Image
    Ashley FriezeNovember 22nd, 2019
    0 388

    To Infinity (Streams) and Beyond!

    Java allows you to process data in collections or streams. It’s very easy to think of streams as a technique…

    Read More »
  • Software Development👁 Image
    Ashley FriezeNovember 15th, 2019
    0 365

    Test Setup is Somewhere Else

    What to Expect of a Test Case It prepares some scenario It executes the system under test It makes some…

    Read More »
  • Software Development👁 Image
    Ashley FriezeNovember 11th, 2019
    0 58

    Hidden Meaning

    Good tests should: Run quickly Fail meaningfully Document the system under test Explain themselves when they go wrong Consider the…

    Read More »
  • Software Development👁 Image
    Ashley FriezeNovember 9th, 2019
    0 656

    Name Parameters In Tests?

    As discussed in What are We Testing Again? from the Test Smells, making the test code explain its test case…

    Read More »
  • Software Development👁 Image
    Ashley FriezeNovember 3rd, 2019
    0 85

    The First and Last Rites

    Let’s look at another test smell. Consider the following tests: @Test public void connectionWorks() { database = openDatabase(); database.healthCheck(); database.close();…

    Read More »
  • Software Development👁 Image
    Ashley FriezeOctober 29th, 2019
    0 661

    It’s Too Noisy

    I want to look at a general case of noise in code. To do so, let’s look at how to…

    Read More »
  • Software Development👁 Image
    Ashley FriezeOctober 27th, 2019
    2 451

    Missing Parameterized Test

    Sometimes, what you need is a parameterized test. They do the job of representing a single way of testing with…

    Read More »
  • First
  • ...
  • «
  • 10
  • 11
  • 12
  • 13
  • 14
  • »
Back to top button
Close