The ability to switch between ANSI and Oracle style joins was introduced in SQL Developer 19.2. How to use The example will show how a query using the Oracle outer join style can be changed to use the ANSI style. Highlight the SQL statement Right click to bring up the […]
Estimated reading time: 1 minute
I ran into this problem whilst writing a unit test using the Jasmine framework and this is how I solved it. The code under test I wanted a test to check the http.get method was called. Note that there is query parameter, expand=true, the importance of which will become apparent […]
Estimated reading time: 5 minutes
A quick tip to save you wasting time wondering why Karma isn’t running your test. Whilst continuing to work through Joe Eames excellent Plurasight course Unit Testing in Angular I came across a problem whereby all tests in one file was not being run by Karma. I was expecting to see tests under […]
Estimated reading time: 1 minute
In this post I will show you how to write an automated unit test in Angular using the Jasmine\Karma framework to assert the correct array element has been deleted. The Unit Test will use the Arrange, Act and Assert (AAA) Pattern and to keep the post on focused on the […]
Estimated reading time: 3 minutes
If you have not watched Rich Hickey’s talk on Hammock Driven Development you should do so now. I’ll wait right here whilst you do. Great talk wasn’t it? Although delivered ten years ago, many of the problems Rich describes I still encounter today so in this post I will discuss […]
Estimated reading time: 5 minutes