From 9d4c6ecc7d94e04e8c0a09ed417896832a44987f Mon Sep 17 00:00:00 2001 From: Fastium <79766552+Fastium@users.noreply.github.com> Date: Thu, 19 May 2022 15:18:07 +0200 Subject: [PATCH] modification pour que les asserts du bankcontroller fonctionne --- .vscode/launch.json | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 61d0a31..aa60619 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,5 +1,13 @@ { "configurations": [ + { + "type": "java", + "name": "Launch BankController", + "request": "launch", + "mainClass": "bank.BankController", + "projectName": "Lab15_OOP_fc166bd2", + "vmArgs": "-enableassertions" + }, { "type": "java", "name": "Launch GUI2", @@ -50,14 +58,7 @@ "projectName": "Lab15_OOP_90898795", "liveshare.allowGuestDebugControl": true }, - { - "type": "java", - "name": "Launch BankController", - "request": "launch", - "mainClass": "bank.BankController", - "projectName": "Lab15_OOP_90898795", - "vmArgs": "-enableassertions" - } + ] }