AdapterTest.SparkContextTest.TestUnion(System.Collections.Generic.IEnumerable)

Here are the examples of the csharp api class AdapterTest.SparkContextTest.TestUnion(System.Collections.Generic.IEnumerable) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

1. Example

Project: Mobius
Source File: SparkContextTest.cs
[Test]
        public void TestUnionWhenRddsIsNull()
        {
            TestUnion<string>(null);
        }

2. Example

Project: Mobius
Source File: SparkContextTest.cs
[Test]
        public void TestUnionWhenRddsIsEmpty()
        {
            TestUnion<string>(new RDD<string>[] { });
        }