以下のAccountクラスで、add_pointsメソッドを実行してもポイントが加算されない不具合があります。どのようなテストで問題を検出できますか? ```ruby class Account def initialize(points: 0) @points = points end def points @points end def add_points(amount) # 不具合:実際には何も処理していない end end ```