-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectTest.java
More file actions
26 lines (19 loc) · 842 Bytes
/
ProjectTest.java
File metadata and controls
26 lines (19 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
class ProjectTest {
public static void main(String[] args){
Project project1 = new Project();
Project one = new Project("One", "Number One Project");
Project internet = new Project("The Internet", "Is a band that is really good!");
//System.out.println(project1.elevatorPitch());
//System.out.println(one.elevatorPitch());
//System.out.println(internet.elevatorPitch());
Portfolio p1 = new Portfolio();
project.setName("First Project");
project.setDescription("This was confusing");
project.setInitialCost(250);
portfolio.addProject(one);
portfolio.addProject(internet);
portfolio.showPortfolio();
//p1.addProject(one);
//p1.addProject(expensive);
}
}