There is a lot of hype surrounding AI and what it can do for us lately. Some executives have been quoted as saying that AI will make software engineers obsolete even! Is this field going the way of the dinosaur and we should all start pivoting to jobs where we work to improve AI, or is there still hope here?
Reality Check
The hype surrounding AI and its impact on software development is largely overblown. AI will not replace we software developers. I'm not against AI either. I think there are many benefits to harness with understanding and using AI properly.
The Benefits
Quick Starts
AI can get a ton of boilerplate code out of the way so you can focus on the difficult business problems to solve.
Ideation
You can use AI to bounce off ideas and quickly get suggestions on following best practices.
Testing Support: Breaking Down the Testing Barrier
Common Testing Challenges
- Time-consuming test creation
- Repetitive boilerplate code
- Complex test data setup
- Maintaining test coverage
AI-Powered Solutions
- Automated test generation
- Smart test data creation
- Test maintenance assistance
Many developers avoid writing tests due to the time investment required. AI can significantly reduce this barrier by automating repetitive aspects of test creation, allowing developers to focus on testing complex business logic and edge cases.
Test Generation Example
Provide AI with your implementation code and receive comprehensive test cases covering:
- Happy path scenarios
- Error conditions
- Boundary cases
Quality Assurance Impact
AI assistance in testing can lead to:
- Increased test coverage
- Faster development cycles
- Reduced technical debt
The Pitfalls
The Copy-Paste Trap
It's easy to fall into a trap of simply copy and pasting the solutions the AI provided, just like a developer previously may have copy and pasted a solution from StackOverflow. This doesn't integrate properly into the existing codebase to keep a cohesive structure, nor does it help the developer understand the code that was generated.
Sometimes AI will produce hallucinations - like if you tell it to improve or fix a large segment of code without losing any necessary behavior, it may remove some features of the existing code still, and it may even introduce new unintended behavior!
I've seen it try to call methods that don't exist, which leads to more development churn as we run into compiler or runtime errors and have to troubleshoot those.
First-Try Inaccuracies
While AI can provide quick coding solutions, it often requires multiple iterations to get to a working solution. Even OpenAI's own researchers found that their models frequently produced incorrect code on the first attempt, requiring additional prompts and error corrections to reach a working solution.
This means developers need to:
- Verify AI-generated code thoroughly
- Be prepared for multiple rounds of refinement
- Have enough technical knowledge to identify and correct errors
AI as a Tool
Despite all of the efficiencies that AI provides, the developer needs to keep AI in context as yet another resource. It's a tool that if used properly can advance our efficiency in completing tasks.
Looking Ahead
AI will continue to improve and as developers, we need to keep our skills fresh in an ever more competitive market.