dither 0.0.15 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/dither.gemspec +1 -1
- data/lib/dither/{ateg.rb → aetg.rb} +2 -2
- data/lib/dither/{ateg_pairwise.rb → aetg_pairwise.rb} +2 -2
- data/lib/dither/java_ext/dither.rb +2 -2
- data/lib/dither/version.rb +1 -1
- data/lib/dither.rb +7 -5
- data/spec/dither/dither_spec.rb +4 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4231f1c2e7ec627c7d682e558f37953c38b091a5
|
4
|
+
data.tar.gz: e837a08996ffd4361aca70511494c5b447e02991
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 74aec8800c026499dda2152b7888ee3d673b5360351478032f57380435ffddc9c588569a5fbb56d39e4b2f97fc4b065cb8341bb9e1b38005726e3e08ecadd4a8
|
7
|
+
data.tar.gz: 439a34480af8a5f705df9fbf4539e2fdb6f45810cbd79eefb899d80f2994dc01d5da29dbecdad326dcf451b42dbfd50d019635caad27d5a206185083a2a06b96
|
data/README.md
CHANGED
@@ -33,17 +33,17 @@ Dither.ipog([[true, false],
|
|
33
33
|
|
34
34
|
```
|
35
35
|
|
36
|
-
|
36
|
+
AETG non-deterministic alogrithm for pairwise testing.
|
37
37
|
```ruby
|
38
38
|
require 'dither'
|
39
39
|
|
40
40
|
# 2-way
|
41
|
-
Dither.
|
41
|
+
Dither.aetg([[true, false],
|
42
42
|
[:cat, :dog, :mouse],
|
43
43
|
(0...3).to_a])
|
44
44
|
|
45
45
|
# 3-way
|
46
|
-
Dither.
|
46
|
+
Dither.aetg([[true, false],
|
47
47
|
[true, false],
|
48
48
|
[:cat, :dog, :mouse],
|
49
49
|
(0...5).to_a],
|
data/dither.gemspec
CHANGED
@@ -13,10 +13,10 @@ module Dither
|
|
13
13
|
raise Dither::Error.new(e.message)
|
14
14
|
end
|
15
15
|
|
16
|
-
def self.
|
16
|
+
def self.aetg(params, opts = {})
|
17
17
|
opts = DEFUALT_OPTS.dup.merge(opts)
|
18
18
|
constraints = constraints_to_java(params.length, opts[:constraints])
|
19
|
-
com.github.jesg.dither.Dither.
|
19
|
+
com.github.jesg.dither.Dither.aetg(
|
20
20
|
opts[:t].to_java(:int),
|
21
21
|
opts[:seed].to_java(:Integer),
|
22
22
|
params.map(&:to_java).to_java,
|
data/lib/dither/version.rb
CHANGED
data/lib/dither.rb
CHANGED
@@ -26,10 +26,12 @@ module Dither
|
|
26
26
|
MIPOG.new(params, opts).run
|
27
27
|
end
|
28
28
|
|
29
|
-
def self.
|
29
|
+
def self.aetg(params, opts = {})
|
30
30
|
opts = DEFUALT_OPTS.dup.merge(opts)
|
31
|
-
|
31
|
+
Aetg::Pairwise.new(params, opts).run
|
32
32
|
end
|
33
|
+
|
34
|
+
class << self; alias_method :ateg, :aetg end
|
33
35
|
end # Dither
|
34
36
|
|
35
37
|
require 'dither/param'
|
@@ -39,12 +41,12 @@ require 'dither/ipog_helper'
|
|
39
41
|
require 'dither/ipog'
|
40
42
|
require 'dither/mipog'
|
41
43
|
require 'dither/chinese_postman_problem'
|
42
|
-
require 'dither/
|
43
|
-
require 'dither/
|
44
|
+
require 'dither/aetg'
|
45
|
+
require 'dither/aetg_pairwise'
|
44
46
|
|
45
47
|
if RUBY_PLATFORM =~ /java/
|
46
48
|
require 'java'
|
47
|
-
require 'dither-0.0.
|
49
|
+
require 'dither-0.1.0.jar'
|
48
50
|
|
49
51
|
require 'dither/java_ext/dither'
|
50
52
|
end
|
data/spec/dither/dither_spec.rb
CHANGED
@@ -166,14 +166,15 @@ describe Dither do
|
|
166
166
|
[0, 1, 1, 1]].to_set)
|
167
167
|
end
|
168
168
|
|
169
|
-
it 'can run 2-way
|
169
|
+
it 'can run 2-way aetg' do
|
170
170
|
params = [(0...2).to_a, (0...2).to_a, (0...2).to_a, (0..3).to_a]
|
171
|
+
Dither.aetg(params)
|
171
172
|
Dither.ateg(params)
|
172
173
|
end
|
173
174
|
|
174
|
-
it 'can run 4-way
|
175
|
+
it 'can run 4-way aetg with seed' do
|
175
176
|
params = [(0...2).to_a, (0...2).to_a, (0...2).to_a, (0..3).to_a]
|
176
|
-
expect(Dither.
|
177
|
+
expect(Dither.aetg(params, :t => 4, :seed => 0, :constraints => [
|
177
178
|
{ 0 => 1, 1 => 1, 2 => 1, 3 => 1 },
|
178
179
|
], :previously_tested => [[1,1,1,2]]).length).to eq 30
|
179
180
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dither
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jason Gowan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-10-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -69,8 +69,8 @@ files:
|
|
69
69
|
- Rakefile
|
70
70
|
- dither.gemspec
|
71
71
|
- lib/dither.rb
|
72
|
-
- lib/dither/
|
73
|
-
- lib/dither/
|
72
|
+
- lib/dither/aetg.rb
|
73
|
+
- lib/dither/aetg_pairwise.rb
|
74
74
|
- lib/dither/chinese_postman_problem.rb
|
75
75
|
- lib/dither/ipog.rb
|
76
76
|
- lib/dither/ipog_helper.rb
|