Skip to content
This repository was archived by the owner on Dec 23, 2022. It is now read-only.

A new PR to test GH Checks #16

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Don't ignore this "." file
!.gitignore
!.travis.yml
target/sonar/
target/sonar/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Multi-language Test Project
=======================
===========================


2 changes: 2 additions & 0 deletions src/main/java/foo/Simplest.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ public class Simplest {

public String name;

public String firstname;

public static int add(int a, int b) {
int result = a + b;

Expand Down
2 changes: 2 additions & 0 deletions src/main/java/foo/Simplest3.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@

public class Simplest3 {

public int a;

}
2 changes: 2 additions & 0 deletions src/main/javascript/Person.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

var Person = function(first, last, middle) {
alert('booo');
this.first = first;
this.middle = middle;
this.last = last;
Expand All @@ -9,6 +10,7 @@ var Person = function(first, last, middle) {
Person.prototype = {

whoAreYou : function() {
alert('pouet');
return this.first + (this.middle ? ' ' + this.middle: '') + ' ' + this.last;
}

Expand Down
3 changes: 2 additions & 1 deletion src/main/javascript/com/company/Vehicle.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ var Vehicle = function(brand, model, year) {
this.year = year;
this.engineState = 'stopped';
this.messageToDriver = '';
alert('BOUM')
};


Expand Down Expand Up @@ -50,4 +51,4 @@ Vehicle.prototype = {
this.year = '2011';
}

};
};