diff options
author | David Miller <dmiller2718@gmail.com> | 2009-05-31 07:37:00 +0000 |
---|---|---|
committer | David Miller <dmiller2718@gmail.com> | 2009-05-31 07:37:00 +0000 |
commit | 810e1a63de383c991153b286ad677cce161de60e (patch) | |
tree | 853b80cdf11899fbe06c4c5562165c5dddd1782c /ClojureCLR/Clojure/Clojure.Tests/LibTests | |
parent | 7eabf5df39ab6bb0e93a53a8ddc1651d49d9ff3e (diff) |
ClojureCLR: major update, part2
Diffstat (limited to 'ClojureCLR/Clojure/Clojure.Tests/LibTests')
-rw-r--r-- | ClojureCLR/Clojure/Clojure.Tests/LibTests/LazySeqTests.cs | 12 | ||||
-rw-r--r-- | ClojureCLR/Clojure/Clojure.Tests/LibTests/StreamTests.cs | 22 |
2 files changed, 34 insertions, 0 deletions
diff --git a/ClojureCLR/Clojure/Clojure.Tests/LibTests/LazySeqTests.cs b/ClojureCLR/Clojure/Clojure.Tests/LibTests/LazySeqTests.cs new file mode 100644 index 00000000..2f2f8820 --- /dev/null +++ b/ClojureCLR/Clojure/Clojure.Tests/LibTests/LazySeqTests.cs @@ -0,0 +1,12 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace Clojure.Tests.LibTests
+{
+ // TODO: Add LazySeq tests
+ class LazySeqTests
+ {
+ }
+}
diff --git a/ClojureCLR/Clojure/Clojure.Tests/LibTests/StreamTests.cs b/ClojureCLR/Clojure/Clojure.Tests/LibTests/StreamTests.cs new file mode 100644 index 00000000..54996342 --- /dev/null +++ b/ClojureCLR/Clojure/Clojure.Tests/LibTests/StreamTests.cs @@ -0,0 +1,22 @@ +/**
+ * Copyright (c) David Miller. All rights reserved.
+ * The use and distribution terms for this software are covered by the
+ * Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
+ * which can be found in the file epl-v10.html at the root of this distribution.
+ * By using this software in any fashion, you are agreeing to be bound by
+ * the terms of this license.
+ * You must not remove this notice, or any other, from this software.
+ **/
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace Clojure.Tests.LibTests
+{
+ // TODO: add tests for Stream
+ class StreamTests
+ {
+ }
+}
|