Test 1
This commit is contained in:
74
src/Main.java
Normal file
74
src/Main.java
Normal file
@@ -0,0 +1,74 @@
|
||||
//TIP To <b>Run</b> code, press <shortcut actionId="Run"/> or
|
||||
// click the <icon src="AllIcons.Actions.Execute"/> icon in the gutter.
|
||||
public class Main {
|
||||
|
||||
|
||||
/* TODO OP: Test bez nadrzędnego rodzica
|
||||
@type: Wydanie
|
||||
@assignee: andy@andyhurricane.pl
|
||||
@priority: High
|
||||
@startDate: 2024-01-15
|
||||
@dueDate: 2024-01-30
|
||||
@CustomField2:user andy@andyhurricane.pl
|
||||
@CustomField3:user:list andy@andyhurricane.pl
|
||||
@CustomField4:option:list "Backend"
|
||||
@CustomField5:option "Backend"
|
||||
@subtask [Epika] Fix login validation
|
||||
@assignee: andy@andyhurricane.pl
|
||||
@priority: Critical
|
||||
@CustomField2:user andy@andyhurricane.pl
|
||||
@CustomField3:user:list andy@andyhurricane.pl
|
||||
@CustomField4:option:list "Backend"
|
||||
@CustomField5:option "Backend"
|
||||
@subtask [Błąd] Add OAuth support
|
||||
@assignee: andy@andyhurricane.pl
|
||||
@CustomField2:user andy@andyhurricane.pl
|
||||
@CustomField3:user:list andy@andyhurricane.pl
|
||||
@CustomField4:option:list "Backend"
|
||||
@CustomField5:option "Backend"
|
||||
*/
|
||||
public static void main(String[] args) {
|
||||
//TIP Press <shortcut actionId="ShowIntentionActions"/> with your caret at the highlighted text
|
||||
// to see how IntelliJ IDEA suggests fixing it.
|
||||
System.out.printf("Hello and welcome!");
|
||||
|
||||
new Test().test();
|
||||
for (int i = 1; i <= 5; i++) {
|
||||
//TIP Press <shortcut actionId="Debug"/> to start debugging your code. We have set one <icon src="AllIcons.Debugger.Db_set_breakpoint"/> breakpoint
|
||||
// for you, but you can always add more by pressing <shortcut actionId="ToggleLineBreakpoint"/>.
|
||||
System.out.println("i = " + i);
|
||||
}
|
||||
|
||||
System.out.printf("Hello and welcome!");
|
||||
}
|
||||
|
||||
|
||||
/* TODO OP: Test z istniejącym rodzicem
|
||||
@type: Epika
|
||||
@parent: 213
|
||||
@assignee: andy@andyhurricane.pl
|
||||
@priority: High
|
||||
@startDate: 2024-01-15
|
||||
@dueDate: 2024-01-30
|
||||
@CustomField2:user andy@andyhurricane.pl
|
||||
@CustomField3:user:list andy@andyhurricane.pl
|
||||
@CustomField4:option:list 1,4
|
||||
@CustomField5:option 1
|
||||
@subtask [Zadanie] Fix login validation
|
||||
@assignee: andy@andyhurricane.pl
|
||||
@priority: Critical
|
||||
@CustomField2:user andy@andyhurricane.pl
|
||||
@CustomField3:user:list andy@andyhurricane.pl
|
||||
@CustomField4:option:list "Frontend"
|
||||
@CustomField5:option "Backend"
|
||||
@subtask [Zadanie] Add OAuth support
|
||||
@assignee: andy@andyhurricane.pl
|
||||
*/
|
||||
|
||||
|
||||
public static void test() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
6
src/Test.java
Normal file
6
src/Test.java
Normal file
@@ -0,0 +1,6 @@
|
||||
public class Test {
|
||||
|
||||
public void test() {
|
||||
System.out.printf("Hello and welcome!");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user