Skip to content

Commit

Permalink
testOne - PASS
Browse files Browse the repository at this point in the history
  • Loading branch information
hoodja committed Mar 8, 2012
1 parent c21b2ac commit 3794e65
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion clojure/PrimeFactors.clj
@@ -1,7 +1,9 @@
(ns com.pillartechnology.practice
(:use clojure.test midje.sweet))

(defn prime-factors-of [n] )
(defn prime-factors-of [n]
[])

(deftest testOne
(fact (prime-factors-of 1) => []))

Expand Down
2 changes: 1 addition & 1 deletion cpp/PrimeFactors.cpp
Expand Up @@ -5,7 +5,7 @@
using ::testing::ElementsAre;

std::list<int> PrimeFactors(int n) {
return NULL;
return std::list<int>();
}

TEST(PrimeFactors, testOne) {
Expand Down
2 changes: 1 addition & 1 deletion java/PrimeFactors.java
Expand Up @@ -11,7 +11,7 @@
public class PrimeFactors {

public static List<Integer> generate(int n) {
return null;
return new ArrayList<Integer>();
}

@Test
Expand Down
2 changes: 1 addition & 1 deletion python/prime_factors.py
@@ -1,7 +1,7 @@
import unittest

def prime_factors(n):
pass
return []


class prime_factors_test(unittest.TestCase):
Expand Down

0 comments on commit 3794e65

Please sign in to comment.