Skip to content

Commit

Permalink
[feat] TestPayAccount 추가
Browse files Browse the repository at this point in the history
- 테스트를 위한 TestPayAccount 추가
  • Loading branch information
kimhyun5u committed Aug 11, 2024
1 parent f0aa992 commit a06d1c6
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package camp.woowak.lab.payaccount.domain;

public class TestPayAccount extends PayAccount {
private Long id;
private PayAccount payAccount;

public TestPayAccount(Long id) {
this.payAccount = payAccount;
}

public Long getId() {
return id;
}
}

0 comments on commit a06d1c6

Please sign in to comment.