Skip to content

Commit

Permalink
rem j
Browse files Browse the repository at this point in the history
  • Loading branch information
neuecc committed Jan 6, 2024
1 parent e707c64 commit 5e81edf
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 9 deletions.
2 changes: 0 additions & 2 deletions tests/R3.Tests/OperatorTests/CombineLatestTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ public class CombineLatestTest
[Fact]
public void CombineLatest()
{
// どちらかに値が入ってきた時点で他方の最新の値とペアにして吐き出す

var source1 = new Subject<int>();
var source2 = new Subject<string>();

Expand Down
2 changes: 0 additions & 2 deletions tests/R3.Tests/OperatorTests/WithLatestFromTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ public class WithLatestFromTest
[Fact]
public void WithLatestFrom()
{
// 最初のストリームに値が発行されたタイミングで、2 番目のストリームの最新の値を併せて出力する

var source1 = new Subject<int>();
var source2 = new Subject<string>();

Expand Down
3 changes: 0 additions & 3 deletions tests/R3.Tests/OperatorTests/ZipLatestTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ public class ZipLatestTest
[Fact]
public void ZipLatest()
{
// 2つペアになった時点で新しい方から吐き出されていく
// 新しい要素が入ってきたら古いものは捨てられる

var source1 = new Subject<int>();
var source2 = new Subject<string>();

Expand Down
2 changes: 0 additions & 2 deletions tests/R3.Tests/OperatorTests/ZipTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ public class ZipTest
[Fact]
public void Zip()
{
// 2つペアになった時点で古いほうから吐き出されていく

var source1 = new Subject<int>();
var source2 = new Subject<string>();

Expand Down

0 comments on commit 5e81edf

Please sign in to comment.