summaryrefslogtreecommitdiffstats
path: root/context/context-test-utils
AgeCommit message (Expand)AuthorFilesLines
2018-10-01Add JUnit for test conceptsliamfallon6-54/+983
2018-10-01Refactor monitoring REST tests to remove PowerMockliamfallon1-1/+4
2018-09-30Unit test for client monitoringliamfallon2-0/+6
2018-09-22Fix sonar problems in Apexliamfallon8-205/+230
2018-09-16Fix Sonar issues in apexliamfallon24-200/+217
2018-09-13Sonar/Checkstyle in service/pluginsliamfallon1-3/+5
2018-09-12Sonar/Checkstyle in model/context/coreliamfallon2-26/+27
2018-09-10Checkstyle changes for apex modelliamfallon14-74/+110
2018-09-06Fix package of apex examples and documentsliamfallon17-13/+513
2018-09-04Fix checkstyle issues in apex model basicliamfallon2-8/+8
2018-08-31Use parameter service in apexliamfallon9-43/+235
2018-08-27Fix checkstyle warning in tools & context packagesDinh Danh Le8-45/+82
2018-08-14Fix checkstyle warnings in context-test-utilsDinh Danh Le21-30/+34
2018-08-03Use common components in apexliamfallon1-0/+20
2018-07-31Adding first set of apex-pdp document changesramverma4-0/+145
2018-07-23Fix sonar bugs and vulnerabilities in apex-pdpramverma2-33/+45
2018-07-18Refactoring Metrics testwaqas.ikram20-299/+886
2018-07-16Refactor persistence JPA testingDinh Danh Le3-0/+353
2018-07-13Adding Benchmark modulewaqas.ikram1-2/+5
2018-07-10Adding executor integration testswaqas.ikram3-2/+11
2018-07-09Fixing Multi JVM Tests and sonar bugswaqas.ikram7-69/+197
2018-07-06Refactoring existing integration testswaqas.ikram38-0/+5929
span class="s">"button" class="close" data-dismiss="modal" aria-label="Close"> <!-- <span aria-hidden="true">&times;</span> --> <img src="assets/img/icon-close.svg"/> </button> </div> <div class="modal-body"> <ngx-file-drop accept=".zip" dropZoneLabel="Drop files here" (onFileDrop)="dropped($event)" (onFileOver)="fileOver($event)" (onFileLeave)="fileLeave($event)"> <ng-template ngx-file-drop-content-tmp let-openFileSelector="openFileSelector"> <div class="folder-upload"> <img src="assets/img/folder-upload.svg"/> </div> <div class="folder-upload-text"> Drag & Drop file </div> <div class="folder-upload-text">or <button type="button" class="btn btn-sm btn-primary" (click)="openFileSelector()">Browse Files </button> </div> <div class="folder-upload-type">Allowed file type: zip</div> </ng-template> </ngx-file-drop> <div class="upload-table"> <table class="table"> <thead> <tr *ngFor="let item of uploadedFiles; let i=index"> <th width="40"><img src="assets/img/icon-file-code.svg"/></th> <th>{{ item.name }}</th> <th (click)="removeInitFile(i)" width="40" class="text-right"><img src="assets/img/icon-remove-file.svg"/></th> </tr> </thead> </table> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-sm btn-secondary" data-dismiss="modal" (click)="resetTheUploadedFiles()">Cancel </button> <button type="button" class="btn btn-sm btn-primary" [disabled]="uploadedFiles?.length<=0" data-dismiss="modal" (click)="importAndSave()"> Import & Save </button> <button type="button" class="btn btn-sm btn-primary" [disabled]="uploadedFiles?.length<=0" data-dismiss="modal" (click)="importAndDeploy()"> Import & Deploy </button> <button type="button" class="btn btn-sm btn-primary" [disabled]="uploadedFiles?.length<=0" data-dismiss="modal" (click)="importPackageAndViewIt()"> Import </button> </div> </div> </div> </div>