We have a couple senior (i.e. older) developers on our team that have no interest in improving. They write solid code, but they don't want to add unit tests or improve their efficiency. They are old-school C programmers using .NET, but everything they write is purely procedural. When confronted about their development speed (most code they write is far more verbose than necessary) or their lack of tests, they just say "Hey, it works, right? What's the problem?"
These developers also write surprisingly bug free code. Unfortunately they are also the only ones who can interpret it when an enhancement is needed (3000 line functions are not abnormal), so it's good job security in a way.
For example, the other day one I was doing a code review and the developer had a 100+ line function to filter a List. Basically it did this (slightly more complex, but it could have still easily been done in LINQ expressions):
decimal avgAmount = locations
.Where(d => d.Type == LocationType.Internal || d.Type == LocationType.Hospital)
.Average(y => y.BillAmount);
His method had a bunch of for loops, accumulators, etc. that basically did the same thing. I thought this was a great opportunity to show him some basic .NET 3+ stuff, but his response was just "So? That makes no sense, why would I want to do it that way? Mine works, right?" When I asked him if he tested it, he said "sure, I ran it in our dev environment and it worked ... why would I write even more code to verify that something I know runs works?"
These two guys have been there for 15 years, and know the systems inside and out. Upper management would never let them go, particularly because they know that these guys' apps never break. Any suggestions for getting these guys to follow a more modern approach, or is it hopeless?